Use turbopack for dev builds. Remove graphql-tag/loader, replaced by gql`` tag literals instead. Approved-by: Linus Flood
10 lines
138 B
TypeScript
10 lines
138 B
TypeScript
import { gql } from "graphql-tag"
|
|
|
|
export const System = gql`
|
|
fragment System on EntrySystemField {
|
|
content_type_uid
|
|
locale
|
|
uid
|
|
}
|
|
`
|