Created
December 24, 2018 10:58
-
-
Save dutchmartin/f190b020fc263bbbc629d6446a7b4043 to your computer and use it in GitHub Desktop.
Webpack 4 base config
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = { | |
mode: "production", | |
devtool: false, | |
entry: { | |
}, | |
output: { | |
}, | |
optimization: { | |
minimize: true | |
}, | |
plugins: [ | |
new webpack.DefinePlugin( { | |
"process.env": { | |
NODE_ENV: JSON.stringify( "production" ), | |
} | |
} ), | |
new CaseSensitivePathsPlugin(), | |
], | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment