Use turbopack for dev builds. Remove graphql-tag/loader, replaced by gql`` tag literals instead. Approved-by: Linus Flood
19 lines
216 B
TypeScript
19 lines
216 B
TypeScript
import { gql } from "graphql-tag"
|
|
|
|
export const SysAsset = gql`
|
|
fragment SysAsset on SysAsset {
|
|
content_type
|
|
description
|
|
dimension {
|
|
height
|
|
width
|
|
}
|
|
metadata
|
|
system {
|
|
uid
|
|
}
|
|
title
|
|
url
|
|
}
|
|
`
|