This repository has been archived on 2024-10-09. You can view files and clone it, but cannot push or open issues or pull requests.
ui/vite.config.ts

16 lines
279 B
TypeScript
Raw Permalink Normal View History

2024-04-04 14:44:15 +02:00
import path from "path"
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
// https://vitejs.dev/config/
export default defineConfig({
2024-04-04 23:11:29 +02:00
plugins: [
react(),
],
2024-04-04 14:44:15 +02:00
resolve: {
alias: {
"@": path.resolve(__dirname, "./src"),
},
},
})