codyhouse install
March - 2022
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
tostyles/global.scss
- Updated
pages/_app.js
fromimport '../styles/globals.css'
toimport '../styles/globals.scss'
- Tried copying Copied the node_modules....custom-style folder and _custom-style.scss to
styles
directory