export default { build: { sourcemap: true, outDir: "dist", assetsDir: "assets", rollupOptions: { output: { manualChunks: { ol: ['ol'], bootstrap: ['bootstrap'], proj4: ['proj4'], } } } }, css: { devSourcemap: true }, resolve: { alias: { "~bootstrap": "node_modules/bootstrap", "~bootstrap-icons": "node_modules/bootstrap-icons", "~ol": "node_modules/ol", } }, server: { host: "::1", port: 5173, strictPort: true, watch: { ignored: ['**/tiles/**'], }, } }