We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
Hey, when building a project where two files import each other, the build fails
pages/index.tsx
import { Component } from "../components/component.tsx" export const App = () => { // ... }
components/component.tsx
import { App } from "../pages/index.tsx" export const Component = () => { // ... }
We get the following error
ERROR TypeError: Cannot resolve module "file:///workspace/.aleph/production.es2015/pages/index.16b03cd86.js" from "file:///workspace/.aleph/production.es2015/components/component.e9b0a1ba3.js".
The text was updated successfully, but these errors were encountered:
This will most likely fix with the new compiler #28 but I don't know for sure. Would circular imports work with something like NextJS tho?
Sorry, something went wrong.
fix: fix circular imports dead loop
30eac09
#89, #114
The bug still happens in 3.0 alpha 8 (Deno 1.7.5)
Same error
Successfully merging a pull request may close this issue.
Hey, when building a project where two files import each other, the build fails
pages/index.tsx
components/component.tsx
We get the following error
The text was updated successfully, but these errors were encountered: