cashier-mer/vite.config.ts

18 lines
281 B
TypeScript
Raw Normal View History

2024-03-30 09:23:34 +08:00
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [vue()],
2024-04-06 10:21:06 +08:00
base: './',
2024-04-01 17:45:21 +08:00
server: {
port: '5175',
host: '0.0.0.0',
},
2024-03-30 18:04:30 +08:00
resolve: {
alias: {
'@': '/src'
}
}
2024-03-30 09:23:34 +08:00
})