8 lines
356 B
TypeScript
8 lines
356 B
TypeScript
import { appTasks } from '@ohos/hvigor-ohos-plugin';
|
|
import { appPlugin } from "@hadss/hmrouter-plugin";
|
|
|
|
export default {
|
|
system: appTasks, /* Built-in plugin of Hvigor. It cannot be modified. */
|
|
plugins: [appPlugin({ ignoreModuleNames: [ /** 不需要扫描的模块 **/ ] })] /* Custom plugin to extend the functionality of Hvigor. */
|
|
}
|