https://github.com/serializedowen/gatsby-plugin-pace
Binding for using pace.js in Gatsby. An automatic page load progress visualizer.
https://github.com/serializedowen/gatsby-plugin-pace
gatsby pace
Last synced: 27 days ago
JSON representation
Binding for using pace.js in Gatsby. An automatic page load progress visualizer.
- Host: GitHub
- URL: https://github.com/serializedowen/gatsby-plugin-pace
- Owner: serializedowen
- Created: 2020-10-19T04:59:20.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-10-19T06:30:46.000Z (over 5 years ago)
- Last Synced: 2025-02-01T03:29:07.648Z (over 1 year ago)
- Topics: gatsby, pace
- Language: CSS
- Homepage:
- Size: 9.77 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## gatsby-plugin-pace
#### pace.js binding for gatsby sites. support all options pace.js support.
Additional options:
- theme: (optional) css theme to use with pace.js, default to `minimal`. gatsby-plugin-pace bundled themes includes:
- minimal
- center-radar
- center-simple
- barber-shop
- flash
- loading-bar
- corner-indicator
- color: main color pace.js will use
- cdn: (optional), if a cdn link to pace.js is specified, plugin will load pace.js from cdn instead of package.
configuration example: in gatsby-config.js
```js
{
resolve: 'gatsby-plugin-pace',
options: { theme: 'minimal', color: 'white', cdn: 'https://cdn.bootcdn.net/ajax/libs/pace/1.0.2/pace.min.js' }
},
```