Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions apps/site/next-data/generators/releaseData.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,6 @@ const generateReleaseData = async () => {
absolute: false,
});

console.log('Release Announcement:', process.cwd(), releaseAnnouncements);

const nodevuOutput = await nodevu({ fetch: fetch });

const majors = Object.entries(nodevuOutput).filter(
Expand Down
14 changes: 6 additions & 8 deletions apps/site/next.fonts.ts
Original file line number Diff line number Diff line change
@@ -1,21 +1,19 @@
import { Open_Sans, IBM_Plex_Mono } from 'next/font/google';
import localFont from 'next/font/local';

// This configures the Next.js Font for Open Sans
// We then export a variable and class name to be used
// within Tailwind (tailwind.config.ts) and Storybook (preview.js)
export const OPEN_SANS = Open_Sans({
weight: ['300', '400', '600', '700'],
export const OPEN_SANS = localFont({
src: './public/static/fonts/open-sans.woff2',
display: 'fallback',
subsets: ['latin'],
variable: '--font-open-sans',
});

// This configures the Next.js Font for IBM Plex Mono
// We then export a variable and class name to be used
// within Tailwind (tailwind.config.ts) and Storybook (preview.js)
export const IBM_PLEX_MONO = IBM_Plex_Mono({
weight: ['400', '600'],
subsets: ['latin'],
fallback: ['ui-monospace'],
export const IBM_PLEX_MONO = localFont({
src: './public/static/fonts/ibm-plex-mono.woff2',
display: 'fallback',
variable: '--font-ibm-plex-mono',
});
Binary file not shown.
Binary file added apps/site/public/static/fonts/open-sans.woff2
Binary file not shown.
4 changes: 0 additions & 4 deletions apps/site/vercel.json

This file was deleted.

Loading