2023-07-23 21:25:39 +08:00
|
|
|
import { defineConfig } from 'vite'
|
|
|
|
import react from '@vitejs/plugin-react'
|
|
|
|
|
|
|
|
// https://vitejs.dev/config/
|
|
|
|
export default defineConfig({
|
2023-07-23 21:51:38 +08:00
|
|
|
base: "/simple-redirect",
|
2023-07-23 21:25:39 +08:00
|
|
|
plugins: [react()],
|
|
|
|
})
|