mirror of
https://github.com/Myzel394/kleckrelay-website.git
synced 2025-06-20 00:05:26 +02:00
15 lines
262 B
TypeScript
Executable File
15 lines
262 B
TypeScript
Executable File
import * as path from "path"
|
|
import {defineConfig} from "vite"
|
|
|
|
import react from "@vitejs/plugin-react"
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
resolve: {
|
|
alias: {
|
|
"~": path.resolve(__dirname, "src"),
|
|
},
|
|
},
|
|
})
|