Skip to content

Commit

Permalink
Try hard-coding GitHub Pages default base path
Browse files Browse the repository at this point in the history
  • Loading branch information
manning-ncsa committed Oct 23, 2023
1 parent 707ea32 commit 544e2df
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,24 +11,24 @@

<script>
window.Polymer = {
rootPath: "/",
rootPath: "/des_ncsa/",
};
// Load and register pre-caching Service Worker
// if ('serviceWorker' in navigator) {
// window.addEventListener('load', function() {
// navigator.serviceWorker.register('./static/service-worker.js', {
// scope: './static/',
// navigator.serviceWorker.register('/des_ncsa/static/service-worker.js', {
// scope: '/des_ncsa/static/',
// });
// });
// }
</script>

<base href="/" />
<!-- See https://goo.gl/OOhYW5 -->
<link rel="manifest" href="./static/manifest.json" />
<link rel="manifest" href="/des_ncsa/static/manifest.json" />

<script src="./static/bower_components/webcomponentsjs/webcomponents-loader.js"></script>
<link rel="import" href="./static/des_components/elements-built.html" />
<script src="/des_ncsa/static/bower_components/webcomponentsjs/webcomponents-loader.js"></script>
<link rel="import" href="/des_ncsa/static/des_components/elements-built.html" />

<style>
html {
Expand Down

0 comments on commit 544e2df

Please sign in to comment.