1
0
Fork 0
mirror of https://github.com/terribleplan/next.js.git synced 2024-01-19 02:48:18 +00:00

Indicate how to import fonts (#3676)

Got this fix from issue #2302. Libraries like `font-awesome` are pretty common. Indicating how to get them to work should be indicated in the `README.md` (if not added to the example)
This commit is contained in:
Tim Huff 2018-02-05 03:43:43 -06:00 committed by Tim Neutkens
parent 863d4d3b4f
commit 31b8e7ed47

View file

@ -60,3 +60,7 @@ This project shows how you can set it up. Have a look at:
Please, report any issue on enhancement related to this example to its original
github repository https://github.com/davibe/next.js-css-global-style-test
## If your stylesheets import fonts
Install `postcss-url` and insert `require('postcss-url')({ url: 'inline' })` as the 2nd element of the `plugins` array in `postcss.config.js`.