@harshitpant/next-fonts
v1.1.0
Published
Import fonts in [Next.js](https://github.com/zeit/next.js) (woff, woff2, eot, ttf & otf)
Readme
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
}
})