mirror of
https://github.com/eternal-flame-AD/unitdc-rs.git
synced 2025-01-22 14:48:41 -06:00
13 lines
229 B
TypeScript
13 lines
229 B
TypeScript
import { defineConfig } from 'vite'
|
|
import react from '@vitejs/plugin-react'
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
base: './',
|
|
server: {
|
|
fs: {
|
|
allow: ['..']
|
|
}
|
|
}
|
|
})
|