mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-06 22:40:14 -05:00
Fix favicon reference
This commit is contained in:
parent
0b1ffcd1f5
commit
f5216db326
1 changed files with 1 additions and 1 deletions
|
@ -157,7 +157,7 @@ when.all([ghost.init(), helpers.loadCoreHelpers(ghost)]).then(function () {
|
|||
// ##Configuration
|
||||
server.configure(function () {
|
||||
server.use(isGhostAdmin);
|
||||
server.use(express.favicon(__dirname + '/core/shared/favicon.ico'));
|
||||
server.use(express.favicon(__dirname + '/shared/favicon.ico'));
|
||||
server.use(I18n.load(ghost));
|
||||
server.use(express.bodyParser({}));
|
||||
server.use(express.bodyParser({uploadDir: __dirname + '/content/images'}));
|
||||
|
|
Loading…
Reference in a new issue