vendure-config.ts 385 B

123456789101112131415161718
  1. import { VendureConfig } from '@vendure/core';
  2. import { TestPlugin } from 'test-plugin';
  3. export const config: VendureConfig = {
  4. apiOptions: {
  5. port: 3000,
  6. },
  7. authOptions: {
  8. tokenMethod: 'bearer',
  9. },
  10. dbConnectionOptions: {
  11. type: 'postgres',
  12. },
  13. paymentOptions: {
  14. paymentMethodHandlers: [],
  15. },
  16. plugins: [TestPlugin],
  17. };