mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-20 22:42:53 -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
|
// ##Configuration
|
||||||
server.configure(function () {
|
server.configure(function () {
|
||||||
server.use(isGhostAdmin);
|
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(I18n.load(ghost));
|
||||||
server.use(express.bodyParser({}));
|
server.use(express.bodyParser({}));
|
||||||
server.use(express.bodyParser({uploadDir: __dirname + '/content/images'}));
|
server.use(express.bodyParser({uploadDir: __dirname + '/content/images'}));
|
||||||
|
|
Loading…
Add table
Reference in a new issue