Use turbopack for dev builds. Remove graphql-tag/loader, replaced by gql`` tag literals instead. Approved-by: Linus Flood
16 lines
262 B
TypeScript
16 lines
262 B
TypeScript
import { gql } from "graphql-tag"
|
|
|
|
export const Essentials_CampaignPage = gql`
|
|
fragment Essentials_CampaignPage on CampaignPageBlocksEssentials {
|
|
essentials {
|
|
title
|
|
preamble
|
|
items {
|
|
label
|
|
icon_identifier
|
|
description
|
|
}
|
|
}
|
|
}
|
|
`
|