diff --git a/frontend/vue.config.js b/frontend/vue.config.js new file mode 100644 index 0000000..52fddb9 --- /dev/null +++ b/frontend/vue.config.js @@ -0,0 +1,10 @@ +module.exports = { + configureWebpack: { + optimization: { + splitChunks: { + minSize: 32_768, // 32 KiB + maxSize: 262_144, // 256 KiB + } + } + } +};