-
-
Notifications
You must be signed in to change notification settings - Fork 583
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
Break project after install #1157
Comments
Thanks for opening this issue! A maintainer will review it soon. |
I have the same issue. |
Also having the same issue. |
Same. Using yarn w/ turbopack and next 15.0.3. Only way is to remove unfortunately. |
Same issue using This happens with a fresh t3 stack app. So I just did a simple console.log;
And we can see; export default {
"experimental": {
"turbo": {
"rules": {
"**/*.tsx": {
"as": "*.tsx",
"loaders": [
{
"loader": "@million/lint/loader",
"options": {
"enabled": true,
"rsc": true,
"turbo": true,
"framework": "next"
}
}
]
},
"**/*.jsx": {
"as": "*.jsx",
"loaders": [
{
"loader": "@million/lint/loader",
"options": {
"enabled": true,
"rsc": true,
"turbo": true,
"framework": "next"
}
}
]
}
}
}
}
}; So all this is doing is configuring the experimental turbo flag to define two rules. https://nextjs.org/docs/app/api-reference/next-config-js/turbo Changing the However having to configure the loading for a big mono repo with loads of packages and aliases is a massive damn. So this is not a simple enough experience for me to apply this to my production project. |
All you need is to disable turbopack. It seems like million js disabled it before, but then it breaks and you had to do this manually now |
What version of
million
are you using?3.1.11
Are you using an SSR adapter? If so, which one?
None
What package manager are you using?
pnpm
What operating system are you using?
Windows 11
What browser are you using?
Firefox
Describe the Bug
After following the docs for next js, after runing development server, the project can not find any component.
The project compiles, but after going to the browser and rendering:
What's the expected result?
Expected result was to render
Link to Minimal Reproducible Example
a
Participation
The text was updated successfully, but these errors were encountered: