1
0
mirror of https://github.com/tobspr/shapez.io.git synced 2024-10-27 20:34:29 +00:00

Provide source maps since the game is public now anyways

This commit is contained in:
Tobias Springer 2020-05-09 17:14:07 +02:00
parent 50ceb89cbb
commit 669ee3e9b6

View File

@ -42,7 +42,6 @@ module.exports = ({
return {
mode: "production",
devtool: false,
entry: {
"bundle.js": [path.resolve(__dirname, "..", "src", "js", "main.js")],
},
@ -60,6 +59,7 @@ module.exports = ({
// Display bailout reasons
optimizationBailout: true,
},
devtool: "source-map",
resolve: {
alias: {
"global-compression": path.resolve(__dirname, "..", "src", "js", "core", "lzstring.js"),