components

This commit is contained in:
Guy Ben-Aharon
2024-08-05 18:34:09 +03:00
parent ab149bb77e
commit 1314aa9128
14 changed files with 1246 additions and 180 deletions

View File

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