@sveltejs/kit 2.11.0 → 2.11.1
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
CHANGED
|
@@ -886,7 +886,13 @@ async function kit({ svelte_config }) {
|
|
|
886
886
|
await build_service_worker(
|
|
887
887
|
out,
|
|
888
888
|
kit,
|
|
889
|
-
|
|
889
|
+
{
|
|
890
|
+
...vite_config,
|
|
891
|
+
build: {
|
|
892
|
+
...vite_config.build,
|
|
893
|
+
minify: initial_config.build?.minify ?? 'esbuild'
|
|
894
|
+
}
|
|
895
|
+
},
|
|
890
896
|
manifest_data,
|
|
891
897
|
service_worker_entry_file,
|
|
892
898
|
prerendered,
|
package/src/version.js
CHANGED