@harshitpant/next-fonts
v1.1.0
Published
Import fonts in [Next.js](https://github.com/zeit/next.js) (woff, woff2, eot, ttf & otf)
Downloads
4
Readme
Next.js + Fonts
Import fonts in Next.js (woff, woff2, eot, ttf & otf)
Installation
npm install --save next-fonts
or
yarn add next-fonts
Usage
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
}
})