mirror of
https://github.com/lemeow125/simple-redirect.git
synced 2024-11-16 22:09:29 +08:00
7 lines
163 B
TypeScript
7 lines
163 B
TypeScript
import { defineConfig } from 'vite'
|
|
import react from '@vitejs/plugin-react'
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
})
|