From 7fede4ee94880f09f44697104c0696e44fc2f8b6 Mon Sep 17 00:00:00 2001 From: Kevin Hoerr Date: Mon, 21 Nov 2022 16:58:44 -0500 Subject: Add Offline Gatsby plugin (#14) * Add offline plugin * More updates --- gatsby-config.js | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'gatsby-config.js') 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", -- cgit