mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-12-23 17:00:24 +01:00
minor typo, and a fix I missed
This commit is contained in:
@@ -273,7 +273,7 @@ module.exports.server = server;
|
||||
}
|
||||
|
||||
app.use(require('less-middleware')({
|
||||
src: path.join(nconf.get('themes_dir') + themeId),
|
||||
src: path.join(nconf.get('themes_dir'), themeId),
|
||||
dest: path.join(__dirname, '../public/css'),
|
||||
prefix: nconf.get('relative_path') + '/css',
|
||||
yuicompress: app.enabled('minification') ? true : false
|
||||
@@ -287,7 +287,7 @@ module.exports.server = server;
|
||||
}
|
||||
|
||||
app.use(require('less-middleware')({
|
||||
src: path.join(__dirname, nconf.get('themes_dir'), '/nodebb-theme-vanilla'),
|
||||
src: path.join(nconf.get('themes_dir'), '/nodebb-theme-vanilla'),
|
||||
dest: path.join(__dirname, '../public/css'),
|
||||
prefix: nconf.get('relative_path') + '/css',
|
||||
yuicompress: app.enabled('minification') ? true : false
|
||||
|
||||
Reference in New Issue
Block a user