v0.0.76
What's Changed
- chore(deps-dev): bump vite from 6.2.5 to 6.2.6 in the npm_and_yarn group across 1 directory by @dependabot in #322
- 🚧 WIP: Docs & Tutorial by @ahaywood in #124
- docs: fix missing import in quick-start.mdx by @CanRau in #357
- chore: Remove unused by @justinvdm in #363
- chore: Allow selected build script in starters by @justinvdm in #364
- fix: Keep entry points ESM without blocking on streamed content by @justinvdm in #369
DX Changes
⚠️ Breaking changes
- In your Document.tsx, replace:
<link rel="preload" href="/src/client.tsx" as="script" />
<script src="/src/client.tsx"></script>
- with:
<link rel="modulepreload" href="/src/client.tsx" />
<script>import("/src/client.tsx")</script>
Client build output
- Client builds are correctly split into multiple chunks again.
CSP (Content Security Policy)
-
Safe <script> tags authored in JSX now automatically receive a
nonce. -
Applies to both inline scripts and external scripts with a src attribute.
New Contributors
Full Changelog: v0.0.75...v0.0.76