We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 71ceb29 commit 17f6d34Copy full SHA for 17f6d34
1 file changed
webpack.prod.js
@@ -1,5 +1,6 @@
1
const { merge } = require('webpack-merge');
2
const common = require('./webpack.common.js');
3
+const webpack = require('webpack');
4
5
module.exports = merge(common, {
6
mode: 'production',
@@ -12,4 +13,9 @@ module.exports = merge(common, {
12
13
// chunks: 'all',
14
// },
15
16
+ plugins: [
17
+ new webpack.DefinePlugin({
18
+ BASE_URL: JSON.stringify('http://codedstrings.somee.com')
19
+ }),
20
+ ],
21
});
0 commit comments