import { twind, virtual } from '@twind/core' import config from '../../twind.config' const tw = twind(config, virtual()) export function GET(): ReturnType { return new Response( ` ${'' + tw.theme('colors.brand.1-dark')} `, { headers: { 'content-type': 'text/xml; charset=utf-8', 'cache-control': 'public, max-age=31536000, immutable', }, }, ) }