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