From 7a9da2e133586e8d1ca4d5854ad16bf104d2f309 Mon Sep 17 00:00:00 2001 From: StarpTech Date: Mon, 19 Jun 2023 09:35:40 +0200 Subject: [PATCH] chore: improve --- .wundergraph/wundergraph.config.ts | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/.wundergraph/wundergraph.config.ts b/.wundergraph/wundergraph.config.ts index bdef829..56dab86 100755 --- a/.wundergraph/wundergraph.config.ts +++ b/.wundergraph/wundergraph.config.ts @@ -3,7 +3,6 @@ import { cors, EnvironmentVariable, introspect, - templates, } from "@wundergraph/sdk"; import server from "./wundergraph.server"; import operations from "./wundergraph.operations"; @@ -18,13 +17,6 @@ configureWunderGraphApplication({ apis: [spacex], server, operations, - codeGenerators: [ - { - templates: [ - ...templates.typescript.all, - ], - }, - ], cors: { ...cors.allowAll, allowedOrigins: @@ -37,8 +29,5 @@ configureWunderGraphApplication({ "http://localhost:3000", new EnvironmentVariable("WG_ALLOWED_ORIGIN"), ], - }, - dotGraphQLConfig: { - hasDotWunderGraphDirectory: false, - }, + } });