-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(vite.config): Duplicate Export #6227
Conversation
this is caused by having duplicate deps in both devDeps and deps
Deploying qwik-docs with Cloudflare Pages
|
LGTM |
After upgrading to
Any chance it's related to this fix? |
@brandonpittman unfortunately that's a cosmetic side effect of a bugfix of the optimizer, and it's fixed in v2. We're focusing our efforts on v2 right now, it's hard to fix this in v1. |
@wmertens |
update RouterHead
notice the bottom two are the ones thats different {head.styles.map((s) => (
<style
key={s.key}
{...s.props}
{...(s.props?.dangerouslySetInnerHTML
? {}
: { dangerouslySetInnerHTML: s.style })}
/>
))}
{head.scripts.map((s) => (
<script
key={s.key}
{...s.props}
{...(s.props?.dangerouslySetInnerHTML
? {}
: { dangerouslySetInnerHTML: s.script })}
/>
))} |
this is caused by having duplicate deps in both devDeps and deps
fixes #6226