feat: add aliases
ci-front / build (push) Has been cancelled

This commit is contained in:
2026-04-03 19:45:04 +03:00
parent 67505d86e8
commit a8b6265a40
2 changed files with 31 additions and 8 deletions
+11 -5
View File
@@ -1,7 +1,13 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
import path from "path";
import tailwindcss from "@tailwindcss/vite";
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
})
plugins: [react(), tailwindcss()],
resolve: {
alias: {
"@": path.resolve(__dirname, "src"),
},
},
});