mirror of
https://github.com/janderedev/automod.git
synced 2024-11-08 11:18:35 +00:00
9 lines
186 B
TypeScript
9 lines
186 B
TypeScript
import { defineConfig } from 'vite'
|
|
import react from '@vitejs/plugin-react'
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
publicDir: 'public',
|
|
})
|