56 lines
1.7 KiB
Plaintext
56 lines
1.7 KiB
Plaintext
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport"
|
|
content="width=device-width, initial-scale=1.0" />
|
|
<link rel="manifest" href="static/manifest.json" />
|
|
<title></title>
|
|
<% if (htmlWebpackPlugin.options.nodeModules) { %>
|
|
<script>
|
|
require('module').globalPaths.push(
|
|
`<%= htmlWebpackPlugin.options.nodeModules.replace(/\\/g, '\\\\') %>`
|
|
)
|
|
</script>
|
|
<% } %>
|
|
</head>
|
|
|
|
<body class="light mainRed secBlue">
|
|
<div id="app"></div>
|
|
<!-- Set `__static` path to static files in production -->
|
|
<script>
|
|
try {
|
|
if (process.env.NODE_ENV !== 'development')
|
|
window.__static = require('path')
|
|
.join(__dirname, '/static')
|
|
.replace(/\\/g, '\\\\')
|
|
} catch {}
|
|
</script>
|
|
|
|
<script>
|
|
// This is the service worker with the Advanced caching
|
|
|
|
// Add this below content to your HTML page, or add the js file to your page at the very top to register service worker
|
|
|
|
// Check compatibility for the browser we're running this in
|
|
if ("serviceWorker" in navigator && (window && window.process && window.process.type !== 'renderer')) {
|
|
if (navigator.serviceWorker.controller) {
|
|
console.log("[PWA Builder] active service worker found, no need to register");
|
|
} else {
|
|
// Register the service worker
|
|
navigator.serviceWorker
|
|
.register("pwabuilder-sw.js", {
|
|
scope: "./"
|
|
})
|
|
.then(function (reg) {
|
|
console.log("[PWA Builder] Service worker has been registered for scope: " + reg.scope);
|
|
});
|
|
}
|
|
}
|
|
</script>
|
|
<!-- webpack builds are automatically injected -->
|
|
</body>
|
|
|
|
</html>
|