We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea85be0 commit 0121bf8Copy full SHA for 0121bf8
scripts/webpack.js
@@ -13,7 +13,6 @@ const config = module.exports = {
13
// Set context to root of project
14
config.context = path.resolve(__dirname, '..');
15
16
-
17
// Resolver config
18
config.resolve = {
19
extensions: ['.js', '.vue'],
@@ -32,13 +31,13 @@ config.entry = {
32
31
// Basic output config
33
config.output = {
34
path: path.resolve(__dirname, '../dist'),
35
- filename: 'bootstrap-vue.js',
+ filename: 'bootstrap-vue.js'
36
};
37
38
// Plugins
39
config.plugins = [
40
new Webpack.DefinePlugin({
41
- 'process.env.NODE_ENV': JSON.stringify(process.env.NODE_ENV),
+ 'process.env.NODE_ENV': JSON.stringify(process.env.NODE_ENV)
42
})
43
];
44
0 commit comments