mirror of
https://github.com/maplibre/martin.git
synced 2024-12-19 04:41:46 +03:00
13 lines
306 B
TypeScript
13 lines
306 B
TypeScript
|
import { defineConfig } from 'vite';
|
||
|
import react from '@vitejs/plugin-react';
|
||
|
|
||
|
// https://vitejs.dev/config/
|
||
|
export default defineConfig({
|
||
|
plugins: [react()],
|
||
|
build: {
|
||
|
// assets can also be the name of a tile source
|
||
|
// so we use /_/assets to avoid conflicts
|
||
|
assetsDir: '_/assets'
|
||
|
},
|
||
|
});
|