Total refactoring performed

This commit is contained in:
AG
2025-12-20 18:53:49 +02:00
parent e41bb6b588
commit 5877ca3544
29 changed files with 3888 additions and 344 deletions

22
vite.config.ts.debug Normal file
View File

@@ -0,0 +1,22 @@
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
import { fileURLToPath } from 'url';
import { dirname, resolve } from 'path';
const __filename = fileURLToPath(import.meta.url);
const __dirname = dirname(__filename);
export default defineConfig({
root: 'src',
plugins: [react()],
base: '/ag-beats/',
build: {
outDir: '../dist',
emptyOutDir: true,
},
resolve: {
alias: {
'@': resolve(__dirname, './src'),
}
}
});