alepha 0.11.12 → 0.12.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -5104,7 +5104,7 @@ const version = packageJson.version;
5104
5104
 
5105
5105
  //#endregion
5106
5106
  //#region src/cli/assets/indexHtml.ts
5107
- const indexHtml = (browserEntry = "src/main.tsx") => `
5107
+ const indexHtml = (browserEntry = "/src/main.tsx") => `
5108
5108
  <!DOCTYPE html>
5109
5109
  <html lang="en">
5110
5110
  <head>
@@ -5112,7 +5112,7 @@ const indexHtml = (browserEntry = "src/main.tsx") => `
5112
5112
  <title>App</title>
5113
5113
  </head>
5114
5114
  <body>
5115
- <script type="module" src="/${browserEntry}"><\/script>
5115
+ <script type="module" src="${browserEntry}"><\/script>
5116
5116
  </body>
5117
5117
  </html>
5118
5118
  `.trim();