diff options
| author | Kevin Hoerr <kjhoerr@protonmail.com> | 2022-11-21 16:58:44 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-11-21 16:58:44 -0500 |
| commit | 7fede4ee94880f09f44697104c0696e44fc2f8b6 (patch) | |
| tree | 334174ebef088157e223fb23a7b53145f3c6cc28 /gatsby-config.js | |
| parent | 7a11c20d60119d72c392cbcee21b259aa13e1e6c (diff) | |
| download | submelon.dev-7fede4ee94880f09f44697104c0696e44fc2f8b6.tar.gz submelon.dev-7fede4ee94880f09f44697104c0696e44fc2f8b6.tar.bz2 submelon.dev-7fede4ee94880f09f44697104c0696e44fc2f8b6.zip | |
Add Offline Gatsby plugin (#14)
* Add offline plugin
* More updates
Diffstat (limited to 'gatsby-config.js')
| -rw-r--r-- | gatsby-config.js | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/gatsby-config.js b/gatsby-config.js index cbcba51..79dbda9 100644 --- a/gatsby-config.js +++ b/gatsby-config.js @@ -12,6 +12,15 @@ module.exports = { theme_color: `#e1e1e1`, display: `browser`, icon: `src/images/favicon-70x70.png`, + cache_busting_mode: `none`, + }, + }, + { + resolve: `gatsby-plugin-offline`, + options: { + workboxConfig: { + globPatterns: ["**/icons*"], + }, }, }, "gatsby-plugin-sharp", |
