init commit

This commit is contained in:
prod-tech
2024-11-17 02:31:42 +03:00
commit cf933c770c
217 changed files with 19340 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
import react from "@vitejs/plugin-react-swc"
import {join} from "node:path"
import {defineConfig} from "vite"
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react()],
resolve: {
alias: {
"@": join(__dirname, './src')
}
}
})