mirror of
https://github.com/gregberge/loadable-components.git
synced 2026-01-25 15:24:15 +00:00
31 lines
707 B
Markdown
31 lines
707 B
Markdown
# Loadable Components website
|
|
|
|
[Documentation site](https://loadable-components.com/) for [loadable components](https://github.com/gregberge/loadable-components). This website is running on [gatsbyjs](https://gatsbyjs.com/).
|
|
|
|
## Getting Started
|
|
|
|
To install and run the docs site locally:
|
|
|
|
```bash
|
|
yarn
|
|
yarn dev
|
|
```
|
|
|
|
Then, open your favorite browser to [localhost:8000](http://localhost:8000/). GraphiQL runs at [localhost:8000/\_\_\_graphql](http://localhost:8000/___graphql).
|
|
|
|
## Contributing
|
|
|
|
Build the site to test locally.
|
|
|
|
```bash
|
|
yarn build
|
|
```
|
|
|
|
Serve the build.
|
|
|
|
```bash
|
|
yarn serve
|
|
```
|
|
|
|
Then, open your favorite browser to [localhost:9000](http://localhost:9000/) to verify everything looks correct.
|