Skip to content
This repository was archived by the owner on Oct 11, 2022. It is now read-only.

Commit 79e093a

Browse files
authored
Merge pull request #2772 from withspectrum/2.2.5
2.2.5
2 parents 812a186 + 4a6e0cf commit 79e093a

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

config-overrides.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,8 @@ module.exports = function override(config, env) {
9898
// Get all public files so they're cached by the SW
9999
let externals = [];
100100
walkFolder('./public/', file => {
101+
// HOTFIX: Don't cache images
102+
if (file.indexOf('img') > -1) return;
101103
externals.push(file.replace(/public/, ''));
102104
});
103105
config.plugins.push(

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "Spectrum",
3-
"version": "2.2.4",
3+
"version": "2.2.5",
44
"license": "BSD-3-Clause",
55
"devDependencies": {
66
"babel-cli": "^6.24.1",

public/_redirects

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)