Skip to content

Commit

Permalink
fix(server): specific script type not working for vite mode (#10195)
Browse files Browse the repository at this point in the history
  • Loading branch information
PeachScript authored Jan 3, 2023
1 parent 12b37c4 commit 733e68e
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions packages/server/src/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,11 +66,14 @@ export async function getMarkup(
props: script,
filters: ['src', 'content'],
});
// allow specific type from config
const isEsmScript = opts.esmScript && !('type' in script);

return script.src
? `<script${opts.esmScript ? ' type="module"' : ''} ${attrs} src="${
? `<script${isEsmScript ? ' type="module"' : ''} ${attrs} src="${
script.src
}"></script>`
: `<script${opts.esmScript ? ' type="module"' : ''} ${attrs}>${
: `<script${isEsmScript ? ' type="module"' : ''} ${attrs}>${
script.content
}</script>`;
}
Expand Down

0 comments on commit 733e68e

Please sign in to comment.