Skip to content

Commit b16da13

Browse files
committed
Set webpack mode to production for imba
1 parent 58b6a41 commit b16da13

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

frameworks/keyed/imba/webpack.config.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@ const webpack = require('webpack')
33
const TerserPlugin = require('terser-webpack-plugin')
44

55
module.exports = {
6-
// mode: 'production',
7-
mode: 'development',
6+
mode: 'production',
87
entry: {
98
main: path.join(__dirname, 'src', 'main.imba')
109
},

frameworks/non-keyed/imba/webpack.config.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@ const webpack = require('webpack')
33
const TerserPlugin = require('terser-webpack-plugin')
44

55
module.exports = {
6-
// mode: 'production',
7-
mode: 'development',
6+
mode: 'production',
87
entry: {
98
main: path.join(__dirname, 'src', 'main.imba')
109
},

0 commit comments

Comments
 (0)