mirror of
https://github.com/bigskysoftware/htmx.git
synced 2025-09-30 06:21:19 +00:00

After trying to set up the project, I found that Node 16 is incompatible with the pinned version of node-sass, and node 15 must be used. This PR documents the requirement - perhaps an upgrade to Node 16 can be done after.
14 lines
345 B
Markdown
14 lines
345 B
Markdown
## Running The Website Locally
|
|
|
|
The htmx.org website is built on [eleventy](https://www.11ty.dev/).
|
|
To run the site, use node 15 and run:
|
|
|
|
```
|
|
npm install
|
|
npx eleventy --serve
|
|
```
|
|
|
|
The site should then be available at <http://localhost:8080>
|
|
|
|
**macOS 64-bit users may need to run `npm rebuild node-sass` to get the documentation site working.**
|