@sveltejs/kit 2.46.1 → 2.46.2
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/package.json +1 -1
- package/src/exports/vite/index.js +1 -1
- package/src/version.js +1 -1
package/package.json
CHANGED
|
@@ -731,7 +731,7 @@ async function kit({ svelte_config }) {
|
|
|
731
731
|
|
|
732
732
|
if (!is_outdated_rollup) {
|
|
733
733
|
// @ts-expect-error only exists in more recent Rollup versions https://rollupjs.org/configuration-options/#output-onlyexplicitmanualchunks
|
|
734
|
-
config.build.rollupOptions.onlyExplicitManualChunks = true;
|
|
734
|
+
config.build.rollupOptions.output.onlyExplicitManualChunks = true;
|
|
735
735
|
}
|
|
736
736
|
},
|
|
737
737
|
|
package/src/version.js
CHANGED