Quick start
webpack
Add conciv to a webpack app.
The webpack entry boots the engine, but it does not inject the widget for you. You add the widget
script yourself and point widgetUrl at the bundle.
Install
npm install -D @conciv/itAdd the plugin
const conciv = require('@conciv/it/plugin/webpack')
module.exports = {
plugins: [conciv.default()],
}Inject the widget
The widget bundle ships as @conciv/widget/global. Serve it and set widgetUrl so the script is
added to your page. See Configuration.
webpack is less complete than Vite. The live page bridge is Vite only. Chat, tests, and approvals work once the engine is booted and the widget is on the page.