inertiajs / inertia

Inertia.js lets you quickly build modern single-page React, Vue and Svelte apps using classic server-side routing and controllers.
https://inertiajs.com
MIT License
6.56k stars 435 forks source link

Fix Svelte version import #2002

Closed pedroborges closed 1 month ago

pedroborges commented 1 month ago

Sam reported that the new svelte adapter adds ~500 kb to his app bundle size.

After some investigation I found the culprit, it’s the way we import the VERSION constant from the Svelte compiler in the createInertiaApp.ts. This PR fixes that.

Before

Screen Shot 2024-10-09 at 03 49 25

After

Screen Shot 2024-10-09 at 03 50 28