Update, 2021-04-15: After an initial miscommunication gave me the wrong impression about the thinking higher up, I learned that I won’t be doing this work, after all. However, I’m leaving this post in place for archival purposes and for the sake of transparency.
As I mentioned a few days back, Day Job-related concerns have led me to spend time dabbling in the Next.js React framework. This is because I’m researching possible future options for my employers’ web presence, and Next.js seems to fit their needs pretty well.
I thought I’d pass along some things I’ve learned along the way, especially since some of them weren’t as well-spelled-out and/or as collected in one place as I’d like. Next’s documentation could use some work, but I’d still say it’s pretty good.1
And, to be sure, so is Next.js itself.

Considering how much I’ve lately tried to limit my dealings with dependency-heavy stuff, it’s amazing how much I’ve come to like developing within Next.js. I find it much more straightforward than the React-based Gatsby SSG with which I futzed back in 2019. Indeed, Next.js boasts many capabilities out-of-the-proverbial-box that require a disturbing number of plugins and often-glitchy configuration hassles in Gatsby.
To be fair, though, I should also note that I’d have been lost React-wise had I not spent the earlier time working with Gatsby and React’s JSX — e.g., here’s an extremely simple footer component in JSX:
let copyrightYr = new Date().getFullYear()
export default function Footer() {
return (
<>
<footer>
<p className="copyNote">© {copyrightYr}
Company Name, LLC.
All rights reserved.</p>
</footer>
</>
)
}
So, in that respect at least, the past runs with Gatsby, React, and JSX amounted to a net positive.
Anyway, going back to the point of this post: here are some things I’ve learned while fiddling with Next.js — particularly while trying to duplicate the look, feel, and functionality of an existing WordPress site at the Day Job. I figured that would be the most logical way to evaluate Next.js for how we’d be using it.
Easy to use with Autoprefixer
If you’re going to develop web content for more than just the most current set of browsers, you’ll probably need the services of Autoprefixer, which requires PostCSS. Both are built into Next.js.
To activate Autoprefixer, all you have to do is add some Browserslist specs to your project’s package.json
. For example, here’s what I added:
"browserslist": [
"last 4 versions",
"> 1%",
"IE 11",
"maintained node versions"
],
Those settings cover nearly every browser in use — even the justifiably despised Internet Explorer. The Day Job, as is true for many corporate environments, is still using Internet Explorer for a number of things, so IE support is necessary for the project which brought me to this little learning exercise.
Babel-ing on
One thing you’ll do a lot in this sort of platform is to import
components, styling files, and the like; and those import
references are relative rather than absolute. So, depending on how nested your stuff is, you might end up with lines like this:
import '../../../assets/scss/global.scss'
And, yeah, you have to count up all those ../
items manually and keep doing so until the Next.js dev server stops throwing error messages.
Fortunately, there’s no need to futz with all that if you add some Babel configuration through the use of the babel-plugin-module-resolver
plugin. Then you can set up aliases in the project’s .babelrc
file:
{
"presets": ["next/babel"],
"plugins": [
[
"module-resolver",
{
"root": ["."],
"alias": {
"@scss": "./assets/scss",
"@components": "./components",
"@partials": "./components/partials"
}
}
]
]
}
As long as your relative references in that file are correct — which is easy to determine, especially since you’re coming from the top level — you then can use those aliases throughout the project. Here’s an alias-friendly version of the previous example:
import '@scss/global.scss'
. . . so much easier.
Sass-iness with CSS Modules
One of the ideas behind this project is to plan for how future teams can manage the involved sites. Where styling is concerned, I’m gambling that Sass/SCSS will still be around in the long term, rather than going with the currently hot Tailwind CSS. Besides, Tailwind’s fixed units aren’t quite precise enough for some of what I’m trying to do.2
Note: Out of curiosity, I did try Tailwind with Next.js 10.0.7, and soon ran into a memory glitch that tends to crash the Next dev server. Anyway, I went back to SCSS in a hurry, and am perfectly happy with that choice.
I decided to opt for something which would be less limiting than a one-stylesheet-fits-all approach. Thus, I went with a combination of SCSS and CSS Modules, both of which Next.js supports from the get-go. Just call each appropriate SCSS file Filename.module.scss
3 and you’re off to the races, combining the advantages of SCSS and CSS Modules all at once.
Here’s an example of how that helps you. I created /pages/careers/index.js
(which Next automatically turns into [site URL]/careers/
) and then imported its specific scoped SCSS file:
import careers from '@scss/Careers.modules.scss'
With careers
set as the namespace for styles from that SCSS file, I then could implement the styles like this:
<div className={careers.headlineRow}>
<h1>Careers</h1>
</div>
By the way: using the term className
rather than class
for CSS/SCSS references is a JSX thing, in case you didn’t know. You’ll also notice that JSX requires using {}
rather than ""
for these references — but when you have to call multiple scoped classes, that gets even more involved:
<div className={`${careers.txtOnly} ${careers.extraStyle}`}>
<p>This is an otherwise-standard text div
where we want to have some special extra styling.
</div>
Perhaps you’re wondering, “Is all this worth the trouble?”
Oh, yeah.
The advantage of this modular approach is that I can apply, say, a headlineRow
class on different pages but keep separate, different versions thereof (for the sake of styling differences from one page to another) without having to give them more convoluted names4 in one long SCSS sheet (or a short one laden with @import
s of multiple SCSS “partials” — more on which, shortly). That allows a team to standardize on specific site-wide styles but have the flexibility to have slight (or not-so-slight) differences in how each style works on different pages without affecting the whole site-wide style cascade. The bigger a site and/or the more people who may have to “touch” its inner workings over time, the more sense it makes to use CSS/SCSS Modules.
Incidentally, I took advantage of this exploration to try the @use
and @forward
rules, which were added to Sass/SCSS in 2019. It’s important to get used to them and get away from the longtime @import
rule, which is being deprecated.5
Easy to use with FontAwesome
As I said earlier, part of the work I’m doing for this learning experience involves rebuilding one of our currently WordPress-based sites as closely as possible. Since that site uses FontAwesome characters in its navigation menu, I wanted to do the same — but without having to link to FontAwesome itself.
Fortunately, FontAwesome has an “official React component,” which makes that a breeze:
import nav from '@scss/Nav.module.scss'
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
import { faBars, faCaretRight, faCaretDown } from '@fortawesome/free-solid-svg-icons'
const hamburgerBars = <FontAwesomeIcon icon={faBars} style={{ width: '24px', height: 'auto' }} />
const caretRight = <FontAwesomeIcon icon={faCaretRight} />
const caretDown = <FontAwesomeIcon icon={faCaretDown} />
{/* === further down within the file... === */}
<ul>
<li className={nav.menuItem}>
A menu item which has a “down-arrow”
because it has a submenu
<span className={nav.arrowDown}>{caretDown}</span>
<ul className={nav.subMenu}>
{/* === ...and so on... === */}
</ul>
</li>
</ul>
The call: TBD
It’s considerably above my pay grade whether the Day Job lets me go ahead with my current inclination to adopt Next.js as the platform on which we build websites going forward. Even if the decision ends up going in a different direction, I’ve still enjoyed learning more about this impressive framework, and may continue to tinker with it on my own sheerly to satisfy my curiosity.
Perhaps this post has given you some feel for what I picked up, as well as made you aware of certain possible gotchas which you might otherwise encounter should you, too, give Next.js a go for your own purposes. It can be a bit much if you don’t need all its powers and aren’t willing to learn some of its (and React’s) idiosyncrasies; but, for the right use cases, it’s outstanding.
In fact, I felt Next’s documentation is considerably better than that of its Vue-based competitor, Nuxt.js, which I had been expecting to prefer — both the product and its documentation — because I frankly find Vue easier to grasp than React. However, our “shop” is moving in React’s direction anyway, so it’s probably just as well. ↩︎
Yes, I know you can extend Tailwind’s built-in styles, use
@apply
, mix it in with some custom styles of your own, and so on. I’ve done all of those in the past. I still decided otherwise. ↩︎The capitalization here fits with the typical naming scheme I’ve seen recommended (e.g., this article and this gist) for components and their fuzzy little friends in the React universe. ↩︎
I was already not a fan of BEM, and other, similarly picky naming methodologies that I deem more convoluted than truly helpful. Now that I’ve seen the advantages and relative idiot-proof (?) status of CSS Modules, I am even more convinced not to worry about those other alternatives. ↩︎
I still use
@import
in this site’s SCSS for now, but only until the Dart Sass implementation is fully integrated into Hugo, which should happen soon. The now-deprecated LibSass implementation currently included in Hugo doesn’t support@use
or@forward
. ↩︎
Latest commit (7ec2a787
) for page file:
2023-05-03 at 1:04:39 PM CDT.
Page history