Files
Code-Create/src/main.ts

10 lines
206 B
TypeScript
Raw Normal View History

2026-05-14 09:53:22 +08:00
import { ViteSSG } from 'vite-ssg'
import App from './App.vue'
import { routes } from './routes'
import './style.css'
export const createApp = ViteSSG(App, {
routes,
base: import.meta.env.BASE_URL,
})