Skip to content

Commit 779b789

Browse files
authoredFeb 22, 2022
fix: avoid minimizing non-javascript inline scripts (#517)
fix #538 fix #540
1 parent 9270477 commit 779b789

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed
 

‎src/node/build/render.ts

+4-1
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,10 @@ function renderHead(head: HeadConfig[]): Promise<string> {
182182
head.map(async ([tag, attrs = {}, innerHTML = '']) => {
183183
const openTag = `<${tag}${renderAttrs(attrs)}>`
184184
if (tag !== 'link' && tag !== 'meta') {
185-
if (tag === 'script') {
185+
if (
186+
tag === 'script' &&
187+
(attrs.type === undefined || attrs.type.includes('javascript'))
188+
) {
186189
innerHTML = (
187190
await transformWithEsbuild(innerHTML, 'inline-script.js', {
188191
minify: true

0 commit comments

Comments
 (0)
Please sign in to comment.