2024-07-10 15:57:37 +00:00
|
|
|
import react from '@vitejs/plugin-react'
|
2024-09-10 06:37:23 +00:00
|
|
|
import { defineConfig } from 'vite'
|
|
|
|
import tsconfigPaths from 'vite-tsconfig-paths'
|
2024-07-10 15:57:37 +00:00
|
|
|
|
|
|
|
// https://vitejs.dev/config/
|
|
|
|
export default defineConfig({
|
2024-09-10 06:37:23 +00:00
|
|
|
plugins: [react(), tsconfigPaths()]
|
2024-07-10 15:57:37 +00:00
|
|
|
})
|