14 lines
226 B
TypeScript
14 lines
226 B
TypeScript
|
|
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
|
||
|
|
}
|
||
|
|
});
|
||
|
|
|