summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--templates/pwa/serviceworker_js.tmpl2
-rw-r--r--web_src/js/gitGraphLoader.js5
-rw-r--r--web_src/less/index.less1
3 files changed, 2 insertions, 6 deletions
diff --git a/templates/pwa/serviceworker_js.tmpl b/templates/pwa/serviceworker_js.tmpl
index a81731a5dc..e4ff2fc07e 100644
--- a/templates/pwa/serviceworker_js.tmpl
+++ b/templates/pwa/serviceworker_js.tmpl
@@ -19,8 +19,6 @@ var urlsToCache = [
'{{StaticUrlPrefix}}/vendor/plugins/vue/vue.min.js',
// css
- '{{StaticUrlPrefix}}/css/gitgraph.css',
- '{{StaticUrlPrefix}}/css/highlight.css',
'{{StaticUrlPrefix}}/css/index.css?v={{MD5 AppVer}}',
'{{StaticUrlPrefix}}/css/swagger.css?v={{MD5 AppVer}}',
'{{StaticUrlPrefix}}/fomantic/semantic.min.css?v={{MD5 AppVer}}',
diff --git a/web_src/js/gitGraphLoader.js b/web_src/js/gitGraphLoader.js
index 997e179c84..f2687fa270 100644
--- a/web_src/js/gitGraphLoader.js
+++ b/web_src/js/gitGraphLoader.js
@@ -2,10 +2,7 @@ $(async () => {
const graphCanvas = document.getElementById('graph-canvas');
if (!graphCanvas) return;
- const [{ default: gitGraph }] = await Promise.all([
- import(/* webpackChunkName: "gitgraph" */'./gitGraph.js'),
- import(/* webpackChunkName: "gitgraph" */'../css/gitGraph.css'),
- ]);
+ const { default: gitGraph } = await import(/* webpackChunkName: "gitgraph" */'./gitGraph.js');
const graphList = [];
$('#graph-raw-list li span.node-relation').each(function () {
diff --git a/web_src/less/index.less b/web_src/less/index.less
index de6f2088c3..a8ef18953d 100644
--- a/web_src/less/index.less
+++ b/web_src/less/index.less
@@ -14,3 +14,4 @@
@import "_explore";
@import "_review";
@import "~highlight.js/styles/github.css";
+@import "../css/gitGraph.css";