Diego Ripley
2025-08-10 10:02:41 -04:00
parent bc9e7b5f8c
commit f5a2831cf6
13 changed files with 1882 additions and 773 deletions
@@ -0,0 +1,23 @@
import { defineConfig } from 'vite'
export default defineConfig({
base: './',
build: {
outDir: 'dist',
assetsDir: 'assets',
sourcemap: true,
rollupOptions: {
output: {
manualChunks: {
'maplibre': ['maplibre-gl'],
'statistics': ['simple-statistics']
}
}
}
},
server: {
port: 3000,
host: "0.0.0.0",
open: true
}
})