@netrojs/fnetro 0.1.5 → 0.1.6

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.
package/dist/server.js CHANGED
@@ -488,7 +488,7 @@ function buildShell(opts) {
488
488
  <body>
489
489
  <div id="fnetro-app">${opts.pageHtml}</div>
490
490
  <script>window.${STATE_KEY}=${opts.stateJson};window.${PARAMS_KEY}=${opts.paramsJson};</script>
491
- <script type="module" src="/assets/client.js"></script>
491
+ <script type="module" src="/client.ts"></script>
492
492
  </body>
493
493
  </html>`;
494
494
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@netrojs/fnetro",
3
- "version": "0.1.5",
3
+ "version": "0.1.6",
4
4
  "description": "Full-stack Hono framework — SSR, SPA, Vue-like reactivity, route groups, middleware and API routes",
5
5
  "type": "module",
6
6
  "license": "MIT",
package/server.ts CHANGED
@@ -66,7 +66,7 @@ function buildShell(opts: {
66
66
  <body>
67
67
  <div id="fnetro-app">${opts.pageHtml}</div>
68
68
  <script>window.${STATE_KEY}=${opts.stateJson};window.${PARAMS_KEY}=${opts.paramsJson};</script>
69
- <script type="module" src="/assets/client.js"></script>
69
+ <script type="module" src="/client.ts"></script>
70
70
  </body>
71
71
  </html>`
72
72
  }