diff --git a/package.json b/package.json index f39f13b7..666b2276 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,8 @@ "description": "![Logo](https://raw.githubusercontent.com/SethBurkart123/BetterThanBetterSeqta/c96edd5956fc11571408310aea98cf7222d6876f/src/icons/betterseqta-light-full.png#gh-dark-mode-only) ![Logo](https://raw.githubusercontent.com/SethBurkart123/BetterThanBetterSeqta/c96edd5956fc11571408310aea98cf7222d6876f/src/icons/betterseqta-dark-full.png#gh-light-mode-only)", "main": "webpack.config.js", "scripts": { - "build": "webpack --mode production" + "build": "webpack --mode production", + "dev": "webpack --mode production --watch" }, "keywords": [], "author": "", diff --git a/webpack.config.js b/webpack.config.js index f823f140..3e84e71b 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -2,6 +2,11 @@ const path = require('path'); const CopyWebpackPlugin = require('copy-webpack-plugin'); module.exports = { + performance: { + hints: false, + maxEntrypointSize: 512000, + maxAssetSize: 512000 + }, entry: { 'SEQTA': './src/SEQTA.js', 'background': './src/background.js',