[REPO REFACTOR]: changed to a better git repository structure with branches

This commit is contained in:
2025-11-01 05:37:33 +01:00
parent 1f77767d59
commit c72cf3c373
79 changed files with 3782 additions and 0 deletions

29
vite.config.js Normal file
View File

@@ -0,0 +1,29 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
export default defineConfig({
plugins: [react()],
server: {
host: "localhost",
port: 3000,
},
base: '/miarmacraft/',
resolve: {
alias: {
'@/': '/src/',
},
},
build: {
chunkSizeWarningLimit: 1000, // para no ver el warning
rollupOptions: {
output: {
manualChunks: {
react: ['react', 'react-dom'],
router: ['react-router-dom'],
motion: ['framer-motion'],
axios: ['axios'],
}
}
}
}
})