mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
56f52db5a9
* Fixed: css-modules reload files styles.css.json. * update: disable uglify for next build. add: require('fs') for next build. add: disable uglify on next.config.js for next build. * Fix linting errors |
||
---|---|---|
.. | ||
pages | ||
next.config.js | ||
package.json | ||
postcss.config.js | ||
README.md |
Scoped stylesheets with PostCSS example
This is an example of using scoped stylesheets and PostCSS, heavily influenced by @davibe's with-global-stylesheet
.
How to use
Download the example or clone the repo:
curl https://codeload.github.com/zeit/next.js/tar.gz/master | tar -xz --strip=2 next.js-master/examples/with-scoped-stylesheets-and-postcss
cd with-scoped-stylesheets-and-postcss
To get this example running you must
npm install .
npm run dev
Visit http://localhost:3000 and try edit pages/styles.css
. Your changes should be picked up instantly.
Deploy it to the cloud with now (download)
now
Why
Scoped CSS is neat and keeps your JS clean. PostCSS is amazing for extended features, such as nesting. CSS Modules keep your class names “local”.
Known issues
Composed CSS files are not watched by next.js, and thus, if you change one, nothing will happen. You'll need to edit a JS file or the CSS file you're composing for it to hot reload.