conciv
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/it
npm install -D @conciv/it
yarn add -D @conciv/it

Add the plugin

vite.config.ts
import {defineConfig} from 'vite'
import conciv from '@conciv/it/plugin/vite'

export default defineConfig({
  plugins: [conciv()],
})

Run and open

Start your dev server, open the app, and click the conciv button.

vite dev

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.

On this page