Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/solarliner/blog-preact
https://github.com/solarliner/blog-preact
Last synced: 11 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/solarliner/blog-preact
- Owner: SolarLiner
- Created: 2020-03-14T13:11:35.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-12-12T05:18:54.000Z (almost 2 years ago)
- Last Synced: 2024-10-10T20:15:46.021Z (28 days ago)
- Language: TypeScript
- Homepage: https://solarliner.me
- Size: 9.2 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 23
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# blog
## CLI Commands
``` bash
# install dependencies
yarn# serve with hot reload at localhost:8080
yarn dev# build for production with minification
yarn build# run tests with jest and preact-render-spy
yarn test
```For detailed explanation on how things work, checkout the [CLI Readme](https://github.com/developit/preact-cli/blob/master/README.md).
Note: When pre-rendering, your module as components are executed in a Node.js environment, where most Web APIs are not available. To account for this, wrap that code in a check like `if (typeof window !== 'undefined')`.
Do not add `preact build --no-prerender` to the build command as it will prevent blog posts from rendering.