Adalberto Prado

Results 1 comments of Adalberto Prado

You can use `react-spline` on NextJs by using this: `import dynamic from "next/dynamic";` `const DynamicComponentWithNoSSR = dynamic( () => import("../components/spline/MyComponent"), { ssr: false } ); ` Then use it as...