Skip to content

Commit

Permalink
fix(vite): Fix Vite entry point on windows (#7554)
Browse files Browse the repository at this point in the history
  • Loading branch information
dac09 authored Feb 3, 2023
1 parent 03b8297 commit c6a31f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/vite/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export default function redwoodPluginVite() {
if (existsSync(clientEntryPath)) {
return html.replace(
'</head>',
`<script type="module" src="${clientEntryPath}"></script>
`<script type="module" src="entry-client.jsx"></script>
</head>`
)
} else {
Expand Down

0 comments on commit c6a31f1

Please sign in to comment.