Use turbopack for dev builds. Remove graphql-tag/loader, replaced by gql`` tag literals instead. Approved-by: Linus Flood
11 lines
147 B
TypeScript
11 lines
147 B
TypeScript
import { gql } from "graphql-tag"
|
|
|
|
export const Metadata = gql`
|
|
fragment Metadata on SeoMetadata {
|
|
noindex
|
|
description
|
|
title
|
|
seo_image
|
|
}
|
|
`
|