mirror of
https://github.com/cdr/code-server.git
synced 2025-12-06 16:34:35 +01:00
Fix "serviceWorker.js" path
This commit is contained in:
parent
0f451524f9
commit
d71649acb4
1 changed files with 1 additions and 1 deletions
|
|
@ -5,7 +5,7 @@ export async function registerServiceWorker(): Promise<void> {
|
|||
const options = getOptions()
|
||||
logger.level = options.logLevel
|
||||
|
||||
const path = normalize(`${options.csStaticBase}/dist/serviceWorker.js`)
|
||||
const path = normalize(`${options.csStaticBase}/out/browser/serviceWorker.js`)
|
||||
try {
|
||||
await navigator.serviceWorker.register(path, {
|
||||
scope: options.base + "/",
|
||||
|
|
|
|||
Loading…
Reference in a new issue