| gio | 5f2f100 | 2025-03-20 18:38:48 +0400 | [diff] [blame] | 1 | import path from "path" |
| 2 | import react from "@vitejs/plugin-react" | ||||
| 3 | import { defineConfig } from "vite" | ||||
| 4 | |||||
| 5 | export default defineConfig({ | ||||
| 6 | plugins: [react()], | ||||
| 7 | resolve: { | ||||
| 8 | alias: { | ||||
| 9 | "@": path.resolve(__dirname, "./src"), | ||||
| 10 | }, | ||||
| 11 | }, | ||||
| 12 | }) | ||||