heritage-hub/vite.config.js

16 lines
296 B
JavaScript
Raw Normal View History

2024-01-31 08:24:01 +00:00
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
2024-01-31 08:34:42 +00:00
import path from 'path'
2024-01-31 08:24:01 +00:00
// https://vitejs.dev/config/
export default defineConfig({
2024-02-01 05:25:43 +00:00
server:{
host:'0.0.0.0'
},
2024-01-31 08:34:42 +00:00
resolve: {
alias: {
'@': path.resolve(__dirname, './src')
}
},
2024-01-31 08:24:01 +00:00
plugins: [vue()],
})