mirror of
https://github.com/grafana/grafana.git
synced 2025-07-30 20:32:24 +08:00
fix(build): fixed build issues with concat not including require_config
This commit is contained in:
@ -13,7 +13,7 @@ module.exports = function(grunt) {
|
||||
'karma:test',
|
||||
'phantomjs',
|
||||
'css',
|
||||
'htmlmin:build',
|
||||
// 'htmlmin:build',
|
||||
'ngtemplates',
|
||||
'cssmin:build',
|
||||
'ngAnnotate:build',
|
||||
@ -34,8 +34,8 @@ module.exports = function(grunt) {
|
||||
|
||||
for(var key in summary){
|
||||
if(summary.hasOwnProperty(key)){
|
||||
var orig = key.replace(root, root+'/[[.AppSubUrl]]');
|
||||
var revved = summary[key].replace(root, root+'/[[.AppSubUrl]]');
|
||||
var orig = key.replace(root, root+'/[[.AppSubUrl]]/public');
|
||||
var revved = summary[key].replace(root, root+'/[[.AppSubUrl]]/public');
|
||||
fixed[orig] = revved;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user