wctest/vite.config.js
CounterFire2023 46e28067c7 update sth
2024-03-18 11:43:22 +08:00

23 lines
414 B
JavaScript

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()],
build: {
sourcemap: true,
},
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url)),
},
},
server: {
open: true,
port: 5173,
host: '0.0.0.0',
},
});