Nuxt Project
Complete guide for installing and using Bitrix24 JS SDK in Nuxt applications.
We are still updating this page. Some data may be missing here — we will complete it shortly.
Setup
Add to a Nuxt project
Bitrix24 JS SDK requires Nuxt 4 due to some dependencies. Make sure to upgrade to Nuxt 4 you begin.
Install the Bitrix24 JS SDK package
pnpm add @bitrix24/b24jssdk-nuxt
yarn add @bitrix24/b24jssdk-nuxt
npm install @bitrix24/b24jssdk-nuxt
bun add @bitrix24/b24jssdk-nuxt
Add the Bitrix24 JS SDK module in your nuxt.config.ts
nuxt.config.ts
export default defineNuxtConfig({
modules: ['@bitrix24/b24jssdk-nuxt']
})