wctest/vite.config.js
CounterFire2023 313dc1dfe3 init
2024-02-28 16:26:42 +08:00

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