Use turbopack for dev builds. Remove graphql-tag/loader, replaced by gql`` tag literals instead. Approved-by: Linus Flood
19 lines
311 B
TypeScript
19 lines
311 B
TypeScript
import { gql } from "graphql-tag"
|
|
|
|
import { Puff } from "../Puff.graphql"
|
|
|
|
export const PuffBlock = gql`
|
|
fragment PuffBlock on CurrentBlocksPageBlocksPuffs {
|
|
puffs {
|
|
puffs {
|
|
... on CurrentBlocksPageBlocksPuffsBlockPuffsPuff {
|
|
puff {
|
|
...Puff
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
${Puff}
|
|
`
|