summaryrefslogtreecommitdiff
path: root/src/web/app/client
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2017-05-17 00:36:04 +0900
committersyuilo <syuilotan@yahoo.co.jp>2017-05-17 00:36:04 +0900
commit2d485730f0b221f5c1e8facaab8fc509c67bc99f (patch)
tree0c80a14191c174d850a8021c79ff02b357d63fba /src/web/app/client
parentCompress an assets (diff)
downloadmisskey-2d485730f0b221f5c1e8facaab8fc509c67bc99f.tar.gz
misskey-2d485730f0b221f5c1e8facaab8fc509c67bc99f.tar.bz2
misskey-2d485730f0b221f5c1e8facaab8fc509c67bc99f.zip
Revert "Compress an assets"
This reverts commit 4c2a3d8df0d1a1fee48b0624b4b5a9a20db0d53e.
Diffstat (limited to 'src/web/app/client')
-rw-r--r--src/web/app/client/script.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/web/app/client/script.js b/src/web/app/client/script.js
index c069b0ee89..465d3edb38 100644
--- a/src/web/app/client/script.js
+++ b/src/web/app/client/script.js
@@ -16,7 +16,7 @@ const app = isMobile ? 'mobile' : 'desktop';
// Load app script
const script = document.createElement('script');
-script.setAttribute('src', `/assets/${app}.${VERSION}.${lang}.js.gz`);
+script.setAttribute('src', `/assets/${app}.${VERSION}.${lang}.js`);
script.setAttribute('async', 'true');
script.setAttribute('defer', 'true');
head.appendChild(script);