|
|
|
|
@ -1,8 +1,13 @@
|
|
|
|
|
import { defineConfig } from 'vite'
|
|
|
|
|
import react from '@vitejs/plugin-react'
|
|
|
|
|
import { defineConfig } from 'vite'
|
|
|
|
|
|
|
|
|
|
// https://vitejs.dev/config/
|
|
|
|
|
export default defineConfig({
|
|
|
|
|
build: {
|
|
|
|
|
rollupOptions: {
|
|
|
|
|
external: ['maplibre-gl/dist/maplibre-gl.css'],
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
plugins: [
|
|
|
|
|
react()
|
|
|
|
|
],
|
|
|
|
|
|