12 lines
205 B
TypeScript
12 lines
205 B
TypeScript
import { App } from '@abearxiong/router';
|
|
import { useConfig } from '@abearxiong/use-config';
|
|
|
|
const config = useConfig();
|
|
|
|
export const app = new App({
|
|
serverOptions: {
|
|
path: '/api/lang',
|
|
},
|
|
});
|
|
|