ui-plugin.ts 414 B

1234567891011121314
  1. import { AdminUiExtension } from '@vendure/common/lib/shared-types';
  2. import { VendurePlugin } from '@vendure/core';
  3. import path from 'path';
  4. @VendurePlugin({})
  5. export class UiPlugin {
  6. static uiExtensions: AdminUiExtension[] = [
  7. {
  8. ngModulePath: path.join(__dirname, 'module'),
  9. ngModuleFileName: 'ui-plugin.module.ts',
  10. ngModuleName: 'TestModule',
  11. },
  12. ];
  13. }