0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2024-12-16 20:26:19 -05:00
logto/packages/demo-app/vite.config.ts

16 lines
287 B
TypeScript
Raw Normal View History

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