Skip to content

Commit 51baba9

Browse files
committed
feat: handle polyfill breaking change
1 parent 4b1b68f commit 51baba9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

files/entry.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
import { installFetch } from '@sveltejs/kit/install-fetch';
1+
import { installPolyfills } from '@sveltejs/kit/node/polyfills';
22
import { Server } from 'SERVER';
33
import { manifest } from 'MANIFEST';
44

55
// replaced at build time
66
const debug = DEBUG;
77

8-
installFetch();
8+
installPolyfills();
99

1010
const server = new Server(manifest);
1111

0 commit comments

Comments
 (0)