this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Consistent spacing for variable handlebars

+2 -2
+2 -2
scripts/post-web-build.js
··· 23 23 const ext = path.extname(file) 24 24 25 25 if (ext === '.js') { 26 - return `<script defer="defer" src="{{staticCDNHost}}/static/js/${file}"></script>` 26 + return `<script defer="defer" src="{{ staticCDNHost }}/static/js/${file}"></script>` 27 27 } 28 28 if (ext === '.css') { 29 - return `<link rel="stylesheet" href="{{staticCDNHost}}/static/css/${file}">` 29 + return `<link rel="stylesheet" href="{{ staticCDNHost }}/static/css/${file}">` 30 30 } 31 31 32 32 return ''