next-google-fonts-loader
TypeScript icon, indicating that this package has built-in type declarations

1.0.1 • Public • Published

npm verison npm bundle size npm downloads

next-google-fonts-loader

A Next.js ImageResponse compatible loader for Google Fonts.

Installation

npm install next-google-fonts-loader

Usage

import { ImageResponse } from "next/og";
import { loader } from "next-google-fonts-loader";

export async function GET() {
  const text = "hello world";
  const fonts = await loader([{ name: "Roboto", weights: [800], styles: ["italic"] }], text);
  return new ImageResponse(
    (
      <div
        style={{
          height: "100%",
          display: "flex",
          flexDirection: "column",
          justifyContent: "center",
          alignItems: "center",
        }}
      >
        <h1
          style={{
            fontFamily: "Roboto",
            fontWeight: 800,
            fontStyle: "italic",
          }}
        >
          {text}
        </h1>
      </div>
    ),
    { fonts },
  );
}

Package Sidebar

Install

npm i next-google-fonts-loader

Weekly Downloads

9

Version

1.0.1

License

MIT

Unpacked Size

5.81 kB

Total Files

7

Last publish

Collaborators

  • jxdp