Skip to content

Commit

Permalink
fix: make qwik.dev work again (#6034)
Browse files Browse the repository at this point in the history
  • Loading branch information
wmertens committed Mar 20, 2024
1 parent 4126aae commit f0ce969
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/docs/adapters/cloudflare-pages/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export default extendConfig(baseConfig, () => {
exclude: ['/demo/*', '/shop/*'],
origin:
(process.env.CF_PAGES_BRANCH !== 'main' ? process.env.CF_PAGES_URL : null) ??
'https://qwik.dev',
'https://qwik.builder.io',
},
}),
],
Expand Down
2 changes: 1 addition & 1 deletion packages/docs/src/components/builder-content/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ export async function getBuilderContent({
);
qwikUrl.searchParams.set('apiKey', apiKey);
qwikUrl.searchParams.set('userAttributes.urlPath', urlPath);
qwikUrl.searchParams.set('userAttributes.site', 'qwik.dev');
qwikUrl.searchParams.set('userAttributes.site', 'qwik.builder.io');
if (cacheBust) {
qwikUrl.searchParams.set('cachebust', 'true');
}
Expand Down

0 comments on commit f0ce969

Please sign in to comment.