在我的webpack.config.js
中new webpack.ProvidePlugin({
"URL": process.env.URL
})
在我的输入.d。中,我声明了URL
declare var URL: string;
像这样。在ts文件中,
export const API = {
URL: `${URL}/api/v1` || "http://127.0.0.1",
};
运行我的项目,它在控制台中有错误
Uncaught Error: Cannot find module "."