Initial commit

This commit is contained in:
2024-10-03 17:14:32 +02:00
commit e6ec877864
50 changed files with 18515 additions and 0 deletions

11
graphql.config.js Normal file
View File

@ -0,0 +1,11 @@
// This file is used by the VSCode GraphQL extension
const { getPaths } = require('@redwoodjs/project-config')
/** @type {import('graphql-config').IGraphQLConfig} */
const config = {
schema: getPaths().generated.schema,
documents: './web/src/**/!(*.d).{ts,tsx,js,jsx}',
}
module.exports = config