Consistent spacing for variable handlebars

This commit is contained in:
Jaz Volpert 2024-10-04 13:49:59 -07:00
parent eb5a6c8911
commit 0d99b8b055

View File

@ -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 ''