test.plugin.ts 337 B

123456789101112
  1. import { PluginCommonModule, VendurePlugin } from '@vendure/core';
  2. /**
  3. * This plugin is to test that the Dashboard will successfully compile and display a
  4. * dashboard extension.
  5. */
  6. @VendurePlugin({
  7. imports: [PluginCommonModule],
  8. dashboard: './dashboard/index.tsx',
  9. compatibility: '>=3.0.0',
  10. })
  11. export class TestPlugin {}