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