diff --git a/playground/ssr-router/src/entry-client.ts b/playground/ssr-router/src/entry-client.ts index eda2ac3..36650c2 100644 --- a/playground/ssr-router/src/entry-client.ts +++ b/playground/ssr-router/src/entry-client.ts @@ -1,13 +1,13 @@ -// import './style.css'; -// import { createApp } from '@sonnetjs/core'; +import './style.css'; +import { createApp } from '@sonnetjs/core'; -// import App from './App'; -// import { routers } from './routes'; +import App from './App'; +import { routers } from './routes'; -// const app = createApp(); -// app.root(App); -// app.use(routers); -// app.lazy(); -// app.ssr(); -// app.mount('#app'); -// app.initialized(); +const app = createApp(); +app.root(App); +app.use(routers); +app.lazy(); +app.ssr(); +app.mount('#app'); +app.initialized();