mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-22 10:21:36 +03:00
faea2da596
- we're slowly trying to draw the lines between the backend and the frontend correctly - these files deal only with serving the frontend so they should live there - there are lots of mixed requires in these files, so having them in the right place makes that clear
8 lines
283 B
JavaScript
8 lines
283 B
JavaScript
module.exports = {
|
|
handleImageSizes: require('./handle-image-sizes'),
|
|
redirectGhostToAdmin: require('./redirect-ghost-to-admin'),
|
|
serveFavicon: require('./serve-favicon'),
|
|
servePublicFile: require('./serve-public-file'),
|
|
staticTheme: require('./static-theme')
|
|
};
|