1
0
mirror of https://github.com/chinchang/web-maker.git synced 2025-07-23 06:51:12 +02:00

fix paths

This commit is contained in:
Kushagra Gour
2017-11-20 00:25:54 +05:30
parent 5f1eaf12b5
commit 8f0b15117f
3 changed files with 3 additions and 2 deletions

@@ -758,7 +758,7 @@ globalConsoleContainerEl
}; };
const AUTO_SAVE_INTERVAL = 15000; // 15 seconds const AUTO_SAVE_INTERVAL = 15000; // 15 seconds
const BASE_PATH = chrome.extension ? '/' : '/app/'; const BASE_PATH = chrome.extension ? '/' : '/app';
var updateTimer, var updateTimer,
updateDelay = 500, updateDelay = 500,

File diff suppressed because one or more lines are too long

@@ -32,6 +32,7 @@ gulp.task('generate-service-worker', ['useRef'], function(callback) {
staticFileGlobs: [ staticFileGlobs: [
rootDir + '/**/*.{js,html,css,png,jpg,gif,svg,eot,ttf,woff}' rootDir + '/**/*.{js,html,css,png,jpg,gif,svg,eot,ttf,woff}'
], ],
stripPrefix: `${rootDir}/`
}, },
callback callback
); );