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()],
};
});