1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-09-30 04:28:19 +02:00

fix source maps

This commit is contained in:
Kyle Spearrin 2020-01-22 12:31:40 -05:00
parent 70eb421e7a
commit 8a23a0c7b9

View File

@ -103,7 +103,6 @@ const plugins = [
{ from: './src/content/autofill.css', to: 'content' },
]),
new webpack.SourceMapDevToolPlugin({
filename: '[name].js.map',
include: ['popup/main.js', 'background.js'],
}),
extractCss,
@ -134,6 +133,7 @@ if (ENV === 'production') {
const config = {
mode: ENV,
devtool: false,
entry: {
'popup/main': './src/popup/main.ts',
'background': './src/background.ts',