I'm having an issue with the Puck editor while using --turbo, tailwind failed #17948
Unanswered
azharuddin-mulla-amla
asked this question in
Help
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Example:
"use client";
import { Config, Puck } from "@measured/puck";
import "@measured/puck/puck.css";
const config: Config<{
HeadingBlock: {
children: string;
};
}> = {
components: {
HeadingBlock: {
fields: {
children: {
type: "text",
},
},
defaultProps: {
children: "TExt",
},
render: ({ children }) => {
return (
{children}
);
},
},
},
};
const initialData = {};
function Client() {
return ;
}
export default Client;
function GlowGradientButton() {
return (
Get it now
);
}
function GradientButton() {
return (
Gradient Border Button
);
}
Uploading puck-turbo-tailwind-failed.webm…
Beta Was this translation helpful? Give feedback.
All reactions