mirror of
https://gitee.com/nocobase/nocobase.git
synced 2025-07-02 03:02:19 +08:00
* refactor(plugin-workflow): move client files into plugin * fix(client): fix package path block build * test(plugin-workflow): trigger ci
16 lines
429 B
TypeScript
16 lines
429 B
TypeScript
import { Application } from '@nocobase/client';
|
|
|
|
export const app = new Application({
|
|
apiClient: {
|
|
baseURL: process.env.API_BASE_URL,
|
|
},
|
|
plugins: [
|
|
require('@nocobase/plugin-china-region/client').default,
|
|
require('@nocobase/plugin-export/client').default,
|
|
require('@nocobase/plugin-audit-logs/client').default,
|
|
require('@nocobase/plugin-workflow/client').default,
|
|
],
|
|
});
|
|
|
|
export default app.render();
|