Use turbopack for dev builds. Remove graphql-tag/loader, replaced by gql`` tag literals instead. Approved-by: Linus Flood
16 lines
202 B
TypeScript
16 lines
202 B
TypeScript
import { gql } from "graphql-tag"
|
|
|
|
export const SocialMedia = gql`
|
|
fragment SocialMedia on Footer {
|
|
social_media {
|
|
links {
|
|
href {
|
|
href
|
|
title
|
|
}
|
|
type
|
|
}
|
|
}
|
|
}
|
|
`
|