UNPKG

utquidem

Version:

The meta-framework suite designed from scratch for frontend-focused modern web development.

21 lines (19 loc) 425 B
import { CliPlugin } from '@modern-js/core'; export default (): CliPlugin => ({ name: 'cliPlugin1', setup: () => { return { modifyServerRoutes({ routes }: { routes: any[] }) { return { routes: routes.concat({ urlPath: '/api', isApi: true, entryPath: '', isSPA: false, isSSR: false, }), }; }, }; }, });