Note: This site is currently "Under construction". I'm migrating to a new version of my site building software. Lots of things are in a state of disrepair as a result (for example, footnote links aren't working). It's all part of the process of building in public. Most things should still be readable though.

codyhouse install

The directions for installing CodyHouse don't include explicit instructions for next.js

This is what I did:

- create an empty repo on GH and clone it down - make a site directory and switch into it `mkdir site`, `cd site` - Create a base next app with: `npx create-next-app .` - Install CodyHouse Framework: `npm i codyhouse-framework` - Install scss support via the `sass` module: `npm install sass` - Renamed `styles/global.css` to `styles/global.scss` - Updated `pages/_app.js` from `import '../styles/globals.css'` to `import '../styles/globals.scss'` - Tried copying Copied the node_modules....custom-style folder and _custom-style.scss to `styles` directory -