mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-20 09:22:49 +03:00
144544e83d
refs #7812, closes #7958 - fixes boolean logic wrt to theme cache value from config - disable cache for admin assets in development - only add asset hash in production
32 lines
623 B
JSON
32 lines
623 B
JSON
{
|
|
"url": "http://localhost:2368",
|
|
"database": {
|
|
"client": "sqlite3",
|
|
"connection": {
|
|
"filename": "content/data/ghost-dev.db"
|
|
},
|
|
"debug": false
|
|
},
|
|
"auth": {
|
|
"type": "ghost",
|
|
"url": "http://devauth.ghost.org:8080"
|
|
},
|
|
"paths": {
|
|
"contentPath": "content/"
|
|
},
|
|
"privacy": {
|
|
"useRpcPing": false,
|
|
"useUpdateCheck": true
|
|
},
|
|
"minifyAssets": false,
|
|
"printErrorStack": true,
|
|
"caching": {
|
|
"theme": {
|
|
"maxAge": 0
|
|
},
|
|
"admin": {
|
|
"maxAge": 0
|
|
}
|
|
}
|
|
}
|