mirror of
https://framagit.org/enfance-libre/resistants
synced 2025-03-14 09:05:04 +00:00
11 lines
226 B
TypeScript
11 lines
226 B
TypeScript
import { defineConfig } from 'vite'
|
|
import react from '@vitejs/plugin-react-swc'
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
base: "/resistants",
|
|
build: {
|
|
outDir: "public"
|
|
}
|
|
})
|