mirror of
https://github.com/vale981/tridactyl
synced 2025-03-05 09:31:41 -05:00
Prevent webpack from minifying source code
a0ac1a2
upgraded Tridactyl's dependencies and webpack suddenly started
minifying the files it builds. This makes debugging much harder and thus
needs to be prevented. This is done by setting "mode" to "development"
in the module.exports object in webpack.config.js.
This commit is contained in:
parent
a0ac1a2878
commit
716e2fb615
1 changed files with 1 additions and 0 deletions
|
@ -3,6 +3,7 @@ const CopyWebPackPlugin = require("copy-webpack-plugin")
|
|||
// const WebpackShellPlugin = require('webpack-shell-plugin')
|
||||
|
||||
module.exports = {
|
||||
mode: "development",
|
||||
entry: {
|
||||
background: "./src/background.ts",
|
||||
content: "./src/content.ts",
|
||||
|
|
Loading…
Add table
Reference in a new issue