Turbopack Error: Failed to write app endpoint /page #83856
Ni9Logic
started this conversation in
Turbopack Error Report
Replies: 2 comments
-
install create const config = {
plugins: {
"@tailwindcss/postcss": {}
},
};
export default config; check your @import "tailwindcss";
@config "../tailwind.config.ts";
/* !important becomes ! suffix */
/* before */
.cm-lineNumbers .cm-activeLineGutter {
@apply rounded-l-sm !important;
}
/* after */
.cm-lineNumbers .cm-activeLineGutter {
@apply rounded-l-sm!;
}
/* except for this one */
.skeleton {
* {
pointer-events: none !important;
}
} |
Beta Was this translation helpful? Give feedback.
0 replies
-
I was able to successfully deploy after hitting this error by deleting my package-json, and then switching to a node version higher than 18, and running npm install. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Turbopack version:
db56d775
Next.js version:
0.0.0
Error message:
Beta Was this translation helpful? Give feedback.
All reactions