From 1e4249db5cd80a3aa8570e2b2adb868288f4a429 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabian=20Ka=CC=88gy?= Date: Wed, 31 May 2023 12:24:03 +0200 Subject: [PATCH] enable source maps in webpack config --- webpack.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/webpack.config.js b/webpack.config.js index 161a4604..f2970e86 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -16,5 +16,6 @@ function externalizeWpDeps({ request }, callback) { module.exports = { ...config, + devtool: 'source-map', plugins: [...config.plugins, new webpack.ExternalsPlugin(null, externalizeWpDeps)], };