Skip to content

Commit

Permalink
Updating webpack
Browse files Browse the repository at this point in the history
  • Loading branch information
DaanV2 committed Feb 11, 2024
1 parent 97c160b commit d68ca2e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion server/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ const config = {
concatenateModules: true,
usedExports: true,
moduleIds:'size',
chunkIds:'size'
chunkIds:'size',
innerGraph: true,
},
performance: {
hints: "warning",
Expand All @@ -25,6 +26,7 @@ const config = {
},

target: "node", // vscode extensions run in a Node.js-context 📖 -> https://webpack.js.org/configuration/node/
mode: "production",

entry: "./server/src/server.ts", // the entry point of this extension, 📖 -> https://webpack.js.org/configuration/entry-context/
output: {
Expand Down

0 comments on commit d68ca2e

Please sign in to comment.