diff options
Diffstat (limited to 'src/web/app/client')
| -rw-r--r-- | src/web/app/client/script.js | 4 | ||||
| -rw-r--r-- | src/web/app/client/view.pug | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/web/app/client/script.js b/src/web/app/client/script.js index ee07edd60d..0f0fd7aa45 100644 --- a/src/web/app/client/script.js +++ b/src/web/app/client/script.js @@ -15,7 +15,7 @@ */ function mountDesktop() { const script = document.createElement('script'); - script.setAttribute('src', `/resources/desktop/script.${VERSION}.js`); + script.setAttribute('src', `/assets/desktop/script.${VERSION}.js`); script.setAttribute('async', 'true'); script.setAttribute('defer', 'true'); head.appendChild(script); @@ -31,7 +31,7 @@ head.appendChild(meta); const script = document.createElement('script'); - script.setAttribute('src', `/resources/mobile/script.${VERSION}.js`); + script.setAttribute('src', `/assets/mobile/script.${VERSION}.js`); script.setAttribute('async', 'true'); script.setAttribute('defer', 'true'); head.appendChild(script); diff --git a/src/web/app/client/view.pug b/src/web/app/client/view.pug index 6f0ff3cd5c..3441631cd7 100644 --- a/src/web/app/client/view.pug +++ b/src/web/app/client/view.pug @@ -2,4 +2,4 @@ extends ../base block head script - include ./../../../../built/web/resources/client/script.js + include ./../../../../built/web/assets/client/script.js |