diff options
-rw-r--r-- | .gitignore | 6 | ||||
-rw-r--r-- | src/static/site2.css (renamed from src/static/site.css) | 0 | ||||
-rwxr-xr-x | src/upd8.js | 2 |
3 files changed, 7 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore index 3c3629e6..6745b9a3 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,7 @@ node_modules + +# FOR NOW: We are using site2.css instead of site.css, +# thanks to breaking changes - we can't have the release +# site reuse the same CSS as the staging/preview one +# anymore! +src/static/site.css diff --git a/src/static/site.css b/src/static/site2.css index 328ef7d0..328ef7d0 100644 --- a/src/static/site.css +++ b/src/static/site2.css diff --git a/src/upd8.js b/src/upd8.js index 83eecb46..e81eccce 100755 --- a/src/upd8.js +++ b/src/upd8.js @@ -1247,7 +1247,7 @@ writePage.html = ( ${socialEmbedHTML} <link rel="stylesheet" href="${to( 'shared.staticFile', - `site.css?${CACHEBUST}` + `site2.css?${CACHEBUST}` )}"> ${ (theme || stylesheet) && |