feat: Add source maps (#63)

This commit is contained in:
Eric Tuvesson
2024-09-05 09:59:11 +02:00
committed by GitHub
parent 94dd3dbf0e
commit 89ed2d602f
12 changed files with 48 additions and 45 deletions

View File

@@ -1,6 +1,7 @@
const { merge } = require("webpack-merge");
const common = require("./webpack.deploy.common.js");
const { merge } = require('webpack-merge');
const common = require('./webpack.deploy.common.js');
module.exports = merge(common, {
mode: "production",
mode: 'production',
devtool: 'source-map'
});