| 12345678910111213141516 |
- import { VendureConfig } from '@vendure/core';
- export const config: VendureConfig = {
- apiOptions: {
- port: 3000,
- },
- authOptions: {
- tokenMethod: 'bearer',
- },
- dbConnectionOptions: {
- type: 'postgres',
- },
- paymentOptions: {
- paymentMethodHandlers: [],
- },
- };
|