vue-todo/vite.config.js

19 lines
355 B
JavaScript
Raw Normal View History

2023-02-28 12:57:08 +00:00
import { fileURLToPath, URL } from 'node:url'
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [vue()],
2023-10-31 17:44:19 +00:00
server: {
host: '127.0.0.1',
port: 5167
},
2023-02-28 12:57:08 +00:00
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))
}
}
})