mirror of
https://github.com/BetterSEQTA/BetterSEQTA-Plus.git
synced 2026-06-06 03:34:40 +00:00
add webpack dev mode
This commit is contained in:
+2
-1
@@ -4,7 +4,8 @@
|
|||||||
"description": " ",
|
"description": " ",
|
||||||
"main": "webpack.config.js",
|
"main": "webpack.config.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "webpack --mode production"
|
"build": "webpack --mode production",
|
||||||
|
"dev": "webpack --mode production --watch"
|
||||||
},
|
},
|
||||||
"keywords": [],
|
"keywords": [],
|
||||||
"author": "",
|
"author": "",
|
||||||
|
|||||||
@@ -2,6 +2,11 @@ const path = require('path');
|
|||||||
const CopyWebpackPlugin = require('copy-webpack-plugin');
|
const CopyWebpackPlugin = require('copy-webpack-plugin');
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
|
performance: {
|
||||||
|
hints: false,
|
||||||
|
maxEntrypointSize: 512000,
|
||||||
|
maxAssetSize: 512000
|
||||||
|
},
|
||||||
entry: {
|
entry: {
|
||||||
'SEQTA': './src/SEQTA.js',
|
'SEQTA': './src/SEQTA.js',
|
||||||
'background': './src/background.js',
|
'background': './src/background.js',
|
||||||
|
|||||||
Reference in New Issue
Block a user