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