Use turbopack for dev builds. Remove graphql-tag/loader, replaced by gql`` tag literals instead. Approved-by: Linus Flood
26 lines
305 B
TypeScript
26 lines
305 B
TypeScript
import { gql } from "graphql-tag"
|
|
|
|
import { SysAsset } from "./SysAsset.graphql"
|
|
|
|
export const Puff = gql`
|
|
fragment Puff on Puff {
|
|
imageConnection {
|
|
edges {
|
|
node {
|
|
...SysAsset
|
|
}
|
|
}
|
|
}
|
|
puff_style
|
|
link {
|
|
href
|
|
title
|
|
}
|
|
text {
|
|
json
|
|
}
|
|
title
|
|
}
|
|
${SysAsset}
|
|
`
|