diff options
Diffstat (limited to 'server/sonar-web/config/paths.js')
-rw-r--r-- | server/sonar-web/config/paths.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/server/sonar-web/config/paths.js b/server/sonar-web/config/paths.js index 9733ef712ff..d1acbdd2274 100644 --- a/server/sonar-web/config/paths.js +++ b/server/sonar-web/config/paths.js @@ -22,5 +22,7 @@ const path = require('path'); module.exports = { appBuild: path.join(__dirname, '../build/webapp'), appPublic: path.join(__dirname, '../public'), - appHtml: path.join(__dirname, '../public/index.html') + appHtml: path.join(__dirname, '../public/index.html'), + docRoot: path.join(__dirname, '../../sonar-docs/src'), + docImages: path.join(__dirname, '../../sonar-docs/src/images') }; |