2022-01-22 20:41:25 +01:00
|
|
|
import { defineConfig } from 'vite'
|
|
|
|
import react from '@vitejs/plugin-react'
|
|
|
|
|
|
|
|
// https://vitejs.dev/config/
|
|
|
|
export default defineConfig({
|
2022-03-20 22:12:58 +01:00
|
|
|
plugins: [react()],
|
|
|
|
publicDir: 'public',
|
2022-01-22 20:41:25 +01:00
|
|
|
})
|