vue.config.js文件传变量给项目中全局使用
给全局增加PROCESSENV变量const webpack = require('webpack')module.exports = {configureWebpack: {plugins: {new webpack.DefinePlugin({PROCESSENV: JSON.stringify({VUE_APP: process.env.VUE_APP})})}}}在main.js中打印co
·
给全局增加PROCESSENV
变量
const webpack = require('webpack')
module.exports = {
configureWebpack: {
plugins: {
new webpack.DefinePlugin({
PROCESSENV: JSON.stringify({VUE_APP: process.env.VUE_APP})
})
}
}
}
在main.js
中打印console.log(PROCESSENV)
是可以取到值得
参考:
DefinePlugin
更多推荐
已为社区贡献5条内容
所有评论(0)