Using Web SDK
Check out the steps for using the Web SDK widget in your apps.
What is the difference between the production and development modes in the Web SDK widget?
const startBB = function () {
if (window.Betterbugs) {
new window.Betterbugs({
apiKey: "YOUR-API-KEY-GOES-HERE", // Replace with your BetterBugs Project API key
mode: "development", // Adding this key: value is optional
});
}
};
startBB();2 - Production mode — For end users and customers
Last updated