Update from Vibe Studio

This commit is contained in:
Vibe Studio
2026-01-20 08:39:33 +00:00
parent 976704f9ec
commit 5c02c4f010
10 changed files with 5929 additions and 1129 deletions

20
vite.config.cjs Normal file
View File

@@ -0,0 +1,20 @@
const react = require('@vitejs/plugin-react')
const path = require('path')
module.exports = {
base: './',
plugins: [react()],
resolve: {
alias: {
'@': path.resolve(__dirname, './src')
}
},
server: {
host: '0.0.0.0',
port: 5173
},
preview: {
host: '0.0.0.0',
port: 3000
}
}