fix(server): disable webpack minification for class name reading

This commit is contained in:
Ahmed Bouhuolia
2023-06-08 22:38:43 +02:00
parent 1bfe19f26c
commit 4d9e3ccfb4

View File

@@ -65,6 +65,9 @@ exports.getCommonWebpackOptions = ({
}, },
], ],
}, },
optimization: {
minimize: false,
},
}; };
if (isDev) { if (isDev) {