Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/kakawait/hugo-tranquilpeak-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'tasks/config/sails-linker.js')
-rwxr-xr-xtasks/config/sails-linker.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/tasks/config/sails-linker.js b/tasks/config/sails-linker.js
index 757ee25..b9f151c 100755
--- a/tasks/config/sails-linker.js
+++ b/tasks/config/sails-linker.js
@@ -7,7 +7,7 @@ module.exports = function(grunt) {
startTag: '<!--SCRIPTS-->',
endTag: '<!--SCRIPTS END-->',
fileRef: function(filepath) {
- var tmpl = '<script src="%s"></script>';
+ var tmpl = '<script src="{{ "%s" | absURL}}"></script>';
return util.format(tmpl, filepath.substring(filepath.indexOf('/')));
},
appRoot: 'src/'
@@ -21,8 +21,8 @@ module.exports = function(grunt) {
startTag: '<!--STYLES-->',
endTag: '<!--STYLES END-->',
fileRef: function(filepath) {
- var tmpl = '<link rel="stylesheet" href="%s" />';
- return util.format(tmpl, filepath.substring(filepath.indexOf('/')));
+ var tmpl = '<link rel="stylesheet" href="{{ "%s" | absURL}}" />';
+ return util.format(tmpl, filepath.substring(filepath.indexOf('/') + 1));
},
appRoot: 'src/'
},
@@ -35,7 +35,7 @@ module.exports = function(grunt) {
startTag: '<!--SCRIPTS-->',
endTag: '<!--SCRIPTS END-->',
fileRef: function(filepath) {
- var tmpl = '<script src="%s"></script>';
+ var tmpl = '<script src="{{ "%s" | absURL}}"></script>';
return util.format(tmpl, filepath.substring(filepath.indexOf('/')));
},
appRoot: 'src/'
@@ -49,8 +49,8 @@ module.exports = function(grunt) {
startTag: '<!--STYLES-->',
endTag: '<!--STYLES END-->',
fileRef: function(filepath) {
- var tmpl = '<link rel="stylesheet" href="%s" />';
- return util.format(tmpl, filepath.substring(filepath.indexOf('/')));
+ var tmpl = '<link rel="stylesheet" href="{{ "%s" | absURL}}" />';
+ return util.format(tmpl, filepath.substring(filepath.indexOf('/') + 1));
},
appRoot: 'src/'
},