Quick start
Vite
Add conciv to a Vite app.
Vite is the full integration. The plugin boots the engine, bridges the live page, and injects the widget for you.
Install
pnpm add -D @conciv/itnpm install -D @conciv/ityarn add -D @conciv/itAdd the plugin
import {defineConfig} from 'vite'
import conciv from '@conciv/it/plugin/vite'
export default defineConfig({
plugins: [conciv()],
})Keep conciv out of production. Gate it on the dev command, or set enabled. See
Configuration.
Next: Usage to see what the agent can do.