WholeProcessPlatform/frontend-process/vite.config.ts

14 lines
226 B
TypeScript
Raw Normal View History

import { defineConfig } from 'vite';
import vue from '@vitejs/plugin-vue';
export default defineConfig({
base: '/process/',
plugins: [vue()],
server: {
host: '0.0.0.0',
port: 5174,
strictPort: true
}
});