0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-03 23:00:14 -05:00
ghost/core/server/web/site/middleware/index.js
Hannah Wolfe dbafaf7205 Moved handle-image-sizes mw into site app
- Moved handle-image-sizes from shared to site as it is not shared
- This file is only used in one place, this updates the code structure to reflect this
- This is one of many similar changes needed to make it easier to refactor to the existing setup
2020-04-21 15:50:01 +01:00

6 lines
216 B
JavaScript

module.exports = {
adminRedirects: require('./admin-redirects'),
handleImageSizes: require('./handle-image-sizes'),
serveFavicon: require('./serve-favicon'),
staticTheme: require('./static-theme')
};