Update from Vibe Studio
This commit is contained in:
20
vite.config.cjs
Normal file
20
vite.config.cjs
Normal 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
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user