vue.js webpack 问题:无法使用 configureWebpack 添加插件到 vue.config.js
vue.js webpack problem: can't add plugin to vue.config.js with configureWebpack
vue.js webpack 问题:我无法使用 configureWebpack
添加插件到 vue.config.js
我用 vue cli 3 创建了一个 vue.js 项目。我正在按照以下示例操作:
https://cli.vuejs.org/guide/webpack.html
我的vue.config.js:
let webpack = require('webpack');
module.exports = {
configureWebpack: {
plugins: [
new webpack.DefinePlugin({
__TEST_MESSAGE__: JSON.stringify('howdy there!')
})
]
},
};
解析后的 webpack 配置如下所示:
{
mode: 'production',
...
plugins: [
/* config.plugin('vue-loader') */
new VueLoaderPlugin(),
/* config.plugin('define') */
new DefinePlugin(
{
'process.env': {
VUE_APP_CLI_UI_URL: '""',
NODE_ENV: '"production"',
BASE_URL: '"/"'
}
}
),
/* config.plugin('case-sensitive-paths') */
new CaseSensitivePathsPlugin(),
...
/////////////////////////////////////////////////////
// Inserted note for SO: This is messed up! Should
// be:
// new DefinePlugin({ __TEST_MESSAGE__: '"howdy there!"' })
/////////////////////////////////////////////////////
{
definitions: {
__TEST_MESSAGE__: '"howdy there!"'
}
}
],
...
}
configureWebPack 应该将我的插件与 vue 定义的插件合并。为什么要剥离 DefinePlugin class 并只在插件数组中包含构造函数的参数?
因为 Vue 已经包含 DefinePlugin
,你需要使用 Webpack 的链 API 修改它,而不是尝试添加一个新的。
module.exports = {
chainWebpack: config => {
config.plugin('define').tap(args => {
args[0].__TEST_MESSAGE__ = JSON.stringify('howdy there!')
return args
})
}
}
这导致以下配置(仅作为示例)...
new DefinePlugin(
{
'process.env': {
NODE_ENV: '"development"',
BASE_URL: '"/"'
},
__TEST_MESSAGE__: '"howdy there!"'
}
),
见https://cli.vuejs.org/guide/webpack.html#modifying-options-of-a-plugin
vue.js webpack 问题:我无法使用 configureWebpack
添加插件到 vue.config.js我用 vue cli 3 创建了一个 vue.js 项目。我正在按照以下示例操作: https://cli.vuejs.org/guide/webpack.html
我的vue.config.js:
let webpack = require('webpack');
module.exports = {
configureWebpack: {
plugins: [
new webpack.DefinePlugin({
__TEST_MESSAGE__: JSON.stringify('howdy there!')
})
]
},
};
解析后的 webpack 配置如下所示:
{
mode: 'production',
...
plugins: [
/* config.plugin('vue-loader') */
new VueLoaderPlugin(),
/* config.plugin('define') */
new DefinePlugin(
{
'process.env': {
VUE_APP_CLI_UI_URL: '""',
NODE_ENV: '"production"',
BASE_URL: '"/"'
}
}
),
/* config.plugin('case-sensitive-paths') */
new CaseSensitivePathsPlugin(),
...
/////////////////////////////////////////////////////
// Inserted note for SO: This is messed up! Should
// be:
// new DefinePlugin({ __TEST_MESSAGE__: '"howdy there!"' })
/////////////////////////////////////////////////////
{
definitions: {
__TEST_MESSAGE__: '"howdy there!"'
}
}
],
...
}
configureWebPack 应该将我的插件与 vue 定义的插件合并。为什么要剥离 DefinePlugin class 并只在插件数组中包含构造函数的参数?
因为 Vue 已经包含 DefinePlugin
,你需要使用 Webpack 的链 API 修改它,而不是尝试添加一个新的。
module.exports = {
chainWebpack: config => {
config.plugin('define').tap(args => {
args[0].__TEST_MESSAGE__ = JSON.stringify('howdy there!')
return args
})
}
}
这导致以下配置(仅作为示例)...
new DefinePlugin( { 'process.env': { NODE_ENV: '"development"', BASE_URL: '"/"' }, __TEST_MESSAGE__: '"howdy there!"' } ),
见https://cli.vuejs.org/guide/webpack.html#modifying-options-of-a-plugin