conciv
Quick start

Rspack

Add conciv to an Rspack app.

Rspack works like webpack. The entry boots the engine, and you inject the widget yourself with widgetUrl.

Install

npm install -D @conciv/it

Add the plugin

rspack.config.js
const conciv = require('@conciv/it/plugin/rspack')

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.

Rspack 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.

On this page