Use turbopack for dev builds. Remove graphql-tag/loader, replaced by gql`` tag literals instead. Approved-by: Linus Flood
22 lines
300 B
TypeScript
22 lines
300 B
TypeScript
import { gql } from "graphql-tag"
|
|
|
|
export const CurrentFooterSocialMedia = gql`
|
|
fragment CurrentFooterSocialMedia on CurrentFooter {
|
|
social_media {
|
|
title
|
|
facebook {
|
|
href
|
|
title
|
|
}
|
|
instagram {
|
|
href
|
|
title
|
|
}
|
|
twitter {
|
|
href
|
|
title
|
|
}
|
|
}
|
|
}
|
|
`
|