Builder content link
http://localhost:3001/generic-3
Builder public api key
What? I need to post my API key to the forum?
What are you trying to accomplish
Integrate dev-tools with React prototype
Code stack you are integrating Builder with
React without a framework
I followed the tutorial example for integrating builder.io with my code base and it work file. I see the Builder button in the bottom right hand corner.
However the tutorial code is Next, but my code base is React without a framework. So I created a new prototype based on the tutorial prototype and got it (mostly) working (Using the Gen 1 SDK)
The part that is not working is the builder tools. There seems to almost no documentation on how to integrate dev-tools with base react. I used the code snippet I found on npm…
import { BuilderDevToolsPlugin } from "@builder.io/dev-tools/webpack";
module.exports = {
plugins: [new BuilderDevToolsPlugin()],
};
This doesn’t seem promising because while my code is indeed Webpack, the prototype is a simple create-react-app project.
So what am I doing wrong? Is it even possible to have the Build Button show up on a React without a framework?