Skip to content

v0.106.0

Compare
Choose a tag to compare
@github-actions github-actions released this 01 May 12:22
· 1427 commits to main since this release
4e53b33

Breaking Changes

Cloudflare pages deployment

In your entry.cloudflare-pages.ts, export fetch instead of onRequest. This is required in order to use the advanced mode of Cloudflare! it will allow future perf improvements and new features.

import { createQwikCity } from '@builder.io/qwik-city/middleware/cloudflare-pages';
import qwikCityPlan from '@qwik-city-plan';
import render from './entry.ssr';

+ const fetch = createQwikCity({ render, qwikCityPlan });
+ export { fetch };
- const onRequest = createQwikCity({ render, qwikCityPlan });
- export { onRequest };

What's Changed

New Contributors

Full Changelog: v0.105.0...v0.106.0