Skip to content

Commit bf99eac

Browse files
committed
merge
2 parents 14a1bdb + fe04202 commit bf99eac

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

.changeset/odd-sloths-sit.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@sveltejs/kit': patch
3+
---
4+
5+
Print error if resolveOpts.ssr is set

packages/kit/src/runtime/server/index.js

+3-4
Original file line numberDiff line numberDiff line change
@@ -198,14 +198,13 @@ export async function respond(request, options, state) {
198198
try {
199199
if (opts) {
200200
// TODO remove for 1.0
201-
// @ts-expect-error
202-
if (opts.transformPage) {
201+
if ('transformPage' in opts) {
203202
throw new Error(
204203
'transformPage has been replaced by transformPageChunk — see https://github.com/sveltejs/kit/pull/5657 for more information'
205204
);
206205
}
207-
// @ts-expect-error
208-
if (opts.ssr) {
206+
207+
if ('ssr' in opts) {
209208
throw new Error(
210209
'ssr has been removed, set it in the appropriate +layout.js instead. See the PR for more information: https://github.com/sveltejs/kit/pull/6197'
211210
);

0 commit comments

Comments
 (0)