Daniel Lucas

Results 1 comments of Daniel Lucas

Managed to solve this issue, just need to set `minify` to `false` on `HtmlWebpackPlugin` in `webpack.config.js` e.g.: ```js new HtmlWebpackPlugin({ filename: "taskpane.html", template: "./src/taskpane/taskpane.html", chunks: ["polyfill", "taskpane"], minify: false })...