Skip to content

Commit

Permalink
Consistent spacing for variable handlebars
Browse files Browse the repository at this point in the history
  • Loading branch information
ericvolp12 committed Oct 4, 2024
1 parent eb5a6c8 commit 0d99b8b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/post-web-build.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 ''
Expand Down

0 comments on commit 0d99b8b

Please sign in to comment.