0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2025-01-20 21:32:31 -05:00
logto/packages/demo-app/vite.config.ts

16 lines
287 B
TypeScript
Raw Normal View History

2024-07-24 17:47:02 +08:00
import { mergeConfig, type UserConfig } from 'vite';
2024-07-23 14:52:45 +08:00
2024-07-24 17:47:02 +08:00
import { defaultConfig } from '../../vite.shared.config';
const config: UserConfig = {
2024-07-23 14:52:45 +08:00
base: '/demo-app',
server: {
port: 5003,
hmr: {
port: 6003,
},
},
2024-07-24 17:47:02 +08:00
};
2024-07-23 14:52:45 +08:00
2024-07-24 17:47:02 +08:00
export default mergeConfig(defaultConfig, config);