This commit is contained in:
nikita
2026-06-12 00:54:50 +03:00
parent c8bc9b8347
commit da9da0971f
11 changed files with 158 additions and 160 deletions
+9 -3
View File
@@ -1,7 +1,13 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import { defineConfig } from "vite";
import path from "path";
import react from "@vitejs/plugin-react";
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
})
resolve: {
alias: {
"@": path.resolve(__dirname, "src"),
},
},
});