Browse Source

chore(server): Tidy up dev config

Michael Bromley 7 years ago
parent
commit
7cd86f6f6b
1 changed files with 1 additions and 4 deletions
  1. 1 4
      server/dev-config.ts

+ 1 - 4
server/dev-config.ts

@@ -14,7 +14,6 @@ import { DefaultSearchPlugin } from './src/plugin/default-search-plugin/default-
  * Config settings used during development
  */
 export const devConfig: VendureConfig = {
-    defaultChannelToken: 'default-channel',
     authOptions: {
         disableAuth: false,
         sessionSecret: 'some-secret',
@@ -35,9 +34,7 @@ export const devConfig: VendureConfig = {
     paymentOptions: {
         paymentMethodHandlers: [examplePaymentHandler],
     },
-    customFields: {
-        GlobalSettings: [{ name: 'royalMailId', type: 'string' }],
-    },
+    customFields: {},
     emailOptions: {
         emailTemplatePath: path.join(__dirname, 'src/email/templates'),
         emailTypes: defaultEmailTypes,