1.1.0 • Published 7 years ago
@harshitpant/next-fonts v1.1.0
Next.js + Fonts
Import fonts in Next.js (woff, woff2, eot, ttf & otf)
Installation
npm install --save next-fontsor
yarn add next-fontsUsage
Create a next.config.js in your project
// next.config.js
const withFonts = require('next-fonts')
module.exports = withFonts()Optionally you can add your custom Next.js configuration as parameter
// next.config.js
const withFonts = require('next-fonts')
module.exports = withFonts({
webpack(config, options) {
return config
}
})