Skip to content

Commit 17f6d34

Browse files
committed
feat: add links to backend at somee.com
1 parent 71ceb29 commit 17f6d34

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

webpack.prod.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
const { merge } = require('webpack-merge');
22
const common = require('./webpack.common.js');
3+
const webpack = require('webpack');
34

45
module.exports = merge(common, {
56
mode: 'production',
@@ -12,4 +13,9 @@ module.exports = merge(common, {
1213
// chunks: 'all',
1314
// },
1415
// },
16+
plugins: [
17+
new webpack.DefinePlugin({
18+
BASE_URL: JSON.stringify('http://codedstrings.somee.com')
19+
}),
20+
],
1521
});

0 commit comments

Comments
 (0)