Mirror: The highly customizable and versatile GraphQL client with which you add on features like normalized caching as you grow.
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix(docs): remove svelte section from ts integrations (#3471)

authored by

Jovi De Croock and committed by
GitHub
ef2b57d1 73628b71

-20
-20
docs/basics/typescript-integration.md
··· 80 80 export default config; 81 81 ``` 82 82 83 - #### Svelte project configuration 84 - 85 - Create the following `codegen.ts` configuration file: 86 - 87 - ```ts 88 - const config: CodegenConfig = { 89 - schema: '<YOUR_GRAPHQL_API_URL>', 90 - documents: ['src/**/*.svelte'], 91 - ignoreNoDocuments: true, // for better experience with the watcher 92 - generates: { 93 - './src/gql/': { 94 - preset: 'client', 95 - plugins: [], 96 - }, 97 - }, 98 - }; 99 - 100 - export default config; 101 - ``` 102 - 103 83 ## Typing queries, mutations and subscriptions 104 84 105 85 Now that your project is properly configured, let's start codegen in watch mode: