mirror of
https://github.com/nestriness/nestri.git
synced 2025-12-16 02:35:37 +02:00
## Description This fixes the issue where Cloudflare fails ## Related Issues <!-- List any related issues (e.g., "Closes #123", "Fixes #456") --> ## Type of Change - [x] Bug fix (non-breaking change) - [ ] New feature (non-breaking change) - [ ] Breaking change (fix or feature that changes existing functionality) - [ ] Documentation update - [ ] Other (please describe): ## Checklist - [x] I have updated relevant documentation - [x] My code follows the project's coding style - [x] My changes generate no new warnings/errors
18 lines
515 B
TypeScript
18 lines
515 B
TypeScript
import { component$, Slot } from "@builder.io/qwik";
|
|
|
|
//font-sans or font-body
|
|
import "@fontsource/geist-sans/400.css"
|
|
import "@fontsource/geist-sans/500.css"
|
|
import "@fontsource/geist-sans/600.css"
|
|
import "@fontsource/geist-sans/700.css"
|
|
// font mono
|
|
import "@fontsource/geist-mono/400.css"
|
|
import "@fontsource/geist-mono/700.css"
|
|
//font-mona
|
|
import "@fontsource-variable/mona-sans"
|
|
//font-bricolage
|
|
import '@fontsource-variable/bricolage-grotesque';
|
|
|
|
export const Fonts = component$(() => {
|
|
return <Slot />;
|
|
}); |