在 webpack 中动态添加全局常量
Posted
技术标签:
【中文标题】在 webpack 中动态添加全局常量【英文标题】:Dynamically add global constant in webpack 【发布时间】:2018-11-02 22:39:08 【问题描述】:我正在尝试向我的项目添加一个全局常量。为此,我使用webpack.DefinePlugin
。如果我在 module.exports 中添加一个,这将有效。但是,我没有有条件地做到这一点。在下面的配置中,我可以在我的模块中使用 __VERSION__
常量,如下所示:declare var __VERSION__: string;
。如果我尝试使用__VERSION2__
或__VERSION3__
,我会在控制台ReferenceError: __VERSION3__ is not defined
中收到错误消息。如果我的理解是正确的,这应该已经被替换了。这是否意味着条件部分没有执行或没有正确执行?我该如何调试呢?或者更好的是,我该如何解决这个问题?
注意:目的是根据开发或生产构建切换 url。
当前项目可以找到here on github
webpack.config.js:
// Based on https://github.com/microsoft/typescript-vue-starter#adding-webpack
var path = require('path')
var webpack = require('webpack')
module.exports =
mode: 'development',
entry: './src/ts/main.ts',
output:
path: path.resolve(__dirname, './dist'),
publicPath: '/dist/',
filename: 'build.js'
,
module:
rules: [
test: /\.vue$/,
loader: 'vue-loader',
options:
loaders:
// Since sass-loader (weirdly) has SCSS as its default parse mode, we map
// the "scss" and "sass" values for the lang attribute to the right configs here.
// other preprocessors should work out of the box, no loader config like this necessary.
'scss': 'vue-style-loader!css-loader!sass-loader',
'sass': 'vue-style-loader!css-loader!sass-loader?indentedSyntax',
// other vue-loader options go here
,
test: /\.tsx?$/,
loader: 'ts-loader',
exclude: /node_modules/,
options:
appendTsSuffixTo: [/\.vue$/],
,
test: /\.(png|jpg|gif|svg)$/,
loader: 'file-loader',
options:
name: '[name].[ext]?[hash]'
,
test: /\.css$/,
use: ['style-loader', 'css-loader']
]
,
resolve:
extensions: ['.ts', '.js', '.vue', '.json'],
alias:
'vue$': 'vue/dist/vue.esm.js'
,
plugins: [
new webpack.DefinePlugin(
__VERSION__: JSON.stringify('1.0.0.' + Date.now())
)],
devServer:
historyApiFallback: true,
noInfo: true
,
performance:
hints: false
,
devtool: 'source-map'
if (process.env.NODE_ENV === 'production')
module.exports.devtool = 'source-map'
// http://vue-loader.vuejs.org/en/workflow/production.html
module.exports.plugins = (module.exports.plugins || []).concat([
new webpack.DefinePlugin(
'process.env':
NODE_ENV: '"production"'
),
new webpack.DefinePlugin(
__IN_DEBUG__: JSON.stringify(false),
__VERSION2__: JSON.stringify('1.0.0.' + Date.now())
),
new webpack.optimize.UglifyJsPlugin(
sourceMap: true,
compress:
warnings: false
),
new webpack.LoaderOptionsPlugin(
minimize: true
)
])
else if(process.env.NODE_ENV === 'development')
module.exports.plugins.push(
new webpack.DefinePlugin(
__VERSION3__: JSON.stringify('1.0.0.' + Date.now())
));
【问题讨论】:
您没有在开发中定义__VERSION2__
,因此出现错误?仅定义了 __VERSION3__
。
很抱歉给您带来了困惑。我在问题中犯了一个错误并更正了它。基本上我无法得到任何仅在条件部分中定义的工作。
【参考方案1】:
经过大量搜索和摆弄,我发现这个问题根本与 webpack 无关。感谢this article,我在底部的 if/else if 前面添加了一个console.log(process.env.NODE_ENV);
,然后输出undefined
。环境变量未设置,因此条件语句均未执行。这其实是 vue.js typescript 模板的问题。
像这样更改 package.json 中的脚本解决了我的问题:
"scripts":
"build": "SET NODE_ENV=development&& webpack",
"test": "echo \"Error: no test specified\" && exit 1"
,
【讨论】:
以上是关于在 webpack 中动态添加全局常量的主要内容,如果未能解决你的问题,请参考以下文章
使用 FragmentStatePagerAdapter 在 ViewPager 的两侧动态添加片段