sample-vendure-config.ts 316 B

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