Next
Last updated
Last updated
To simply configure PurgeCSS with next.js, you can use .
next-purgecss
requires one of the following css next plugins :
Just pick the one that fits your needs. In the following steps, I will use next-css
but it works the same for the other css next plugins.
For example, install next-css
and next-purgecss
:
or with npm :
next.config.js
.By default, this plugin will scan components
and pages
directories for classnames.
Under the hood, next-purgecss
uses the PurgeCSS Webpack Plugin. You can pass custom options to the plugin by defining purgeCss
object in your next.config.js
:
See the page dedicated to the for more information.