All checks were successful
Publish Docker Image / Publish Docker Image (push) Successful in 39s
12 lines
301 B
JavaScript
Executable File
12 lines
301 B
JavaScript
Executable File
// 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}',
|
|
}
|
|
|
|
export default config
|