diff options
author | Jaz Volpert <ericvolp12@gmail.com> | 2024-10-04 13:49:59 -0700 |
---|---|---|
committer | Jaz Volpert <ericvolp12@gmail.com> | 2024-10-04 13:49:59 -0700 |
commit | 0d99b8b0550084ef55f294b33ef5e12608fd5035 (patch) | |
tree | e523152e9631631c127fed112ee48b4063e79b1a /scripts | |
parent | eb5a6c891159a449d97764806fbe9b66ddb32281 (diff) | |
download | voidsky-0d99b8b0550084ef55f294b33ef5e12608fd5035.tar.zst |
Consistent spacing for variable handlebars
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/post-web-build.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/post-web-build.js b/scripts/post-web-build.js index 5619b251b..3b1b62dfd 100644 --- a/scripts/post-web-build.js +++ b/scripts/post-web-build.js @@ -23,10 +23,10 @@ const outputFile = entrypoints const ext = path.extname(file) if (ext === '.js') { - return `<script defer="defer" src="{{staticCDNHost}}/static/js/${file}"></script>` + return `<script defer="defer" src="{{ staticCDNHost }}/static/js/${file}"></script>` } if (ext === '.css') { - return `<link rel="stylesheet" href="{{staticCDNHost}}/static/css/${file}">` + return `<link rel="stylesheet" href="{{ staticCDNHost }}/static/css/${file}">` } return '' |