fix: delete additional things

This commit is contained in:
2025-08-02 12:48:02 +03:30
parent 482d672955
commit 3f5f8e1aaf
8 changed files with 26 additions and 16 deletions

12
vite.config.js Normal file
View File

@@ -0,0 +1,12 @@
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
import path from 'path';
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
resolve: {
alias: {
'@': path.resolve(__dirname, './src'),
},
},
});