0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-06 22:40:14 -05:00

Fixed minified CSS not reflecting latest changes

- CSS was updated previously, but the minified version wasn't
- as a result the private site landing page was visually broken
- minified CSS is built as part of `grunt prod`, called during `grunt release`
This commit is contained in:
Matt Hanley 2022-03-16 16:22:17 +00:00 committed by Matt Hanley
parent 340f64c2df
commit 1033e7be21
2 changed files with 1 additions and 2 deletions

View file

@ -220,7 +220,7 @@ module.exports = function (grunt) {
]
},
files: {
'core/server/frontend/ghost.min.css': 'core/frontend/public/ghost.css'
'core/frontend/public/ghost.min.css': 'core/frontend/public/ghost.css'
}
}
},

File diff suppressed because one or more lines are too long