JSPM

@builder.io/dev-tools

0.0.21
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 19293
  • Score
    100M100P100Q131402F

Builder.io Dev Tools

Package Exports

  • @builder.io/dev-tools/core
  • @builder.io/dev-tools/server
  • @builder.io/dev-tools/vite
  • @builder.io/dev-tools/webpack

Readme

Builder.io Visual CMS Dev Tools

Setup and integrate Builder.io Visual CMS during development using the Dev Tools plugin.

Vite

Import builderDevTools from @builder.io/dev-tools/vite and place it as the the first plugin to ensure it runs before others.

// vite config file
import { defineConfig } from "vite";
import { builderDevTools } from "@builder.io/dev-tools/vite";

export default defineConfig(() => {
  return {
    plugins: [builderDevTools()],
  };
});