diff --git a/apps/cube-v1/src/main.ts b/apps/cube-v1/src/main.ts
index 6616298..02e4efb 100644
--- a/apps/cube-v1/src/main.ts
+++ b/apps/cube-v1/src/main.ts
@@ -1,14 +1 @@
-import { createApp } from 'vue';
-import { createRouter, createWebHistory } from 'vue-router';
-import '@core/initApp';
-import App from '@core/App.vue';
-import routes from './routes/index';
-
-const router = createRouter({
- history: createWebHistory(),
- routes,
-});
-
-const app = createApp(App);
-app.use(router);
-app.mount('#app');
+export { default as routes } from './routes';