mirror of
https://github.com/logto-io/logto.git
synced 2024-12-16 20:26:19 -05:00
15 lines
287 B
TypeScript
15 lines
287 B
TypeScript
import { mergeConfig, type UserConfig } from 'vite';
|
|
|
|
import { defaultConfig } from '../../vite.shared.config';
|
|
|
|
const config: UserConfig = {
|
|
base: '/demo-app',
|
|
server: {
|
|
port: 5003,
|
|
hmr: {
|
|
port: 6003,
|
|
},
|
|
},
|
|
};
|
|
|
|
export default mergeConfig(defaultConfig, config);
|