mirror of
https://github.com/Grasscutters/Meadow.git
synced 2024-11-27 06:10:28 +00:00
9 lines
229 B
TypeScript
9 lines
229 B
TypeScript
import { defineConfig } from 'vite'
|
|
import react from '@vitejs/plugin-react'
|
|
import tsconfigPaths from "vite-tsconfig-paths";
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [react(), tsconfigPaths()],
|
|
})
|