mirror of
https://github.com/vector-im/hydrogen-web.git
synced 2024-11-20 03:25:52 +01:00
load service worker in production mode, adjust development flag
This commit is contained in:
parent
bc86bf2d00
commit
9a3f74c6fb
@ -19,18 +19,21 @@
|
||||
import {main} from "./main";
|
||||
import {Platform} from "./Platform";
|
||||
import configJSON from "./assets/config.json?raw";
|
||||
import {olmPaths, downloadSandboxPath, workerPath} from "./sdk/paths/vite";
|
||||
import {olmPaths, downloadSandboxPath, workerPath, serviceWorkerPath} from "./sdk/paths/vite";
|
||||
const paths = {
|
||||
olm: olmPaths,
|
||||
downloadSandbox: downloadSandboxPath,
|
||||
worker: workerPath,
|
||||
...JSON.parse(configJSON)
|
||||
};
|
||||
if (import.meta.env.PROD) {
|
||||
paths.serviceWorker = serviceWorkerPath;
|
||||
}
|
||||
const platform = new Platform(
|
||||
document.body,
|
||||
paths,
|
||||
null,
|
||||
{development: true}
|
||||
{development: import.meta.env.DEV}
|
||||
);
|
||||
main(platform);
|
||||
</script>
|
||||
|
@ -17,3 +17,6 @@ export const olmPaths = {
|
||||
|
||||
export const downloadSandboxPath = _downloadSandboxPath;
|
||||
export const workerPath = _workerPath;
|
||||
// the service worker is generated by the build as an unhashed asset,
|
||||
// we don't use it at development time, so don't use import for the path
|
||||
export const serviceWorkerPath = "sw.js";
|
||||
|
Loading…
Reference in New Issue
Block a user