Use turbopack for dev builds. Remove graphql-tag/loader, replaced by gql`` tag literals instead. Approved-by: Linus Flood
14 lines
222 B
TypeScript
14 lines
222 B
TypeScript
import { gql } from "graphql-tag"
|
|
|
|
export const CurrentBlocksPageBreadcrumbs = gql`
|
|
fragment CurrentBlocksPageBreadcrumbs on CurrentBlocksPage {
|
|
breadcrumbs {
|
|
parents {
|
|
href
|
|
title
|
|
}
|
|
title
|
|
}
|
|
}
|
|
`
|