IOPaint/web_app/vite.config.ts

13 lines
240 B
TypeScript
Raw Permalink Normal View History

2023-11-22 01:53:20 +01:00
import path from "path"
import react from "@vitejs/plugin-react"
import { defineConfig } from "vite"
export default defineConfig({
plugins: [react()],
resolve: {
alias: {
"@": path.resolve(__dirname, "./src"),
},
},
})