1
0
Fork 0
mirror of https://github.com/sussy-code/smov.git synced 2024-12-20 14:37:43 +01:00
smov/vite.config.ts

13 lines
248 B
TypeScript
Raw Normal View History

2022-12-13 23:19:07 +01:00
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react-swc";
import path from "path";
export default defineConfig({
plugins: [react()],
resolve: {
alias: {
2022-12-13 23:50:13 +01:00
"@": path.resolve(__dirname, "./src"),
2022-12-13 23:19:07 +01:00
},
},
});