13 lines
223 B
JavaScript
13 lines
223 B
JavaScript
import { defineConfig } from 'vite';
|
|
import vue from '@vitejs/plugin-vue';
|
|
|
|
export default defineConfig({
|
|
plugins: [vue()],
|
|
server: {
|
|
port: 5001,
|
|
host: "0.0.0.0",
|
|
hmr: {
|
|
clientPort: 80,
|
|
},
|
|
},
|
|
}); |