ice/examples/with-prerender-spa/src/app.ts

14 lines
201 B
TypeScript

import { runApp, IAppConfig } from 'ice';
const appConfig: IAppConfig = {
app: {
rootId: 'ice-container'
},
router: {
// not support hash
type: 'browser',
}
};
runApp(appConfig);