File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 15
15
"lint" : " pnpm -w exec lint" ,
16
16
"lint:types" : " glint" ,
17
17
"lint:fix" : " pnpm -w exec lint fix" ,
18
- "cf" : " cd dist && npx wrangler pages dev ./" ,
18
+ "cf" : " cd dist && npx wrangler pages dev --port 42000 ./" ,
19
19
"start" : " concurrently 'ember serve' 'pnpm _syncPnpm --watch' --names 'serve,sync deps'" ,
20
20
"test:ember" : " ember test --test-port 0" ,
21
21
"_syncPnpm" : " pnpm sync-dependencies-meta-injected" ,
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ async function errorIfNotFound(context) {
45
45
* in our URLs, we *only* want to return those files.
46
46
* Not the index HTML
47
47
*/
48
- if ( status <= 400 && headers . get ( 'content-type' ) . includes ( 'text/html' ) ) {
48
+ if ( status <= 400 && headers . get ( 'content-type' ) ? .includes ( 'text/html' ) ) {
49
49
/**
50
50
* We return a 404
51
51
*/
You can’t perform that action at this time.
0 commit comments