Change next-js config to be able to write ``` import typeDefs from './schema.graphql' ```
7 lines
120 B
TypeScript
7 lines
120 B
TypeScript
declare module '*.graphql' {
|
|
import { DocumentNode } from 'graphql'
|
|
const Schema: DocumentNode
|
|
|
|
export = Schema
|
|
}
|