Collection of Vite plugins and utilities for webxdc.
-
📱 Integrated
webxdc.js
mini-emulator to test your WebXDC right on the browser while developing. -
🐞 Integrated Eruda support to debug inside Delta Chat when building with
NODE_ENV=debug
. -
📦 Automatically generate your
.xdc
file. -
🦕 Support legacy/old browsers.
Add @webxdc/vite-plugins
library as development dependency:
npm install --save-dev "@webxdc/vite-plugins"
Then update your Vite configuration as needed. See below for example Vite configurations.
Example vite.config.js
files
Use webxdcViteConfig()
for a quick and easy default configuration.
// vite.config.ts
import { webxdcViteConfig } from "@webxdc/vite-plugins";
import { defineConfig } from "vite";
export default defineConfig(webxdcViteConfig());
Use the individual plugins for more control over the build.
// vite.config.ts
import {
buildXDC,
eruda,
mockWebxdc,
// legacy, // might cause problems in existing projects
} from "@webxdc/vite-plugins";
import { defineConfig } from "vite";
export default defineConfig({
plugins: [buildXDC(), eruda(), mockWebxdc()],
});
For a full example check the example folder.