@arrow-js/vite-plugin-arrow
v1.0.0
Published
Vite integration for ArrowJS projects.
Downloads
138
Readme
@arrow-js/vite-plugin-arrow

ArrowJS is a tiny, type-safe reactive UI runtime built around JavaScript modules, template literals, and the DOM.
Docs · API Reference · Playground
What this package does
@arrow-js/vite-plugin-arrow integrates ArrowJS with Vite projects.
It configures Vite so Arrow packages resolve correctly in development, build, and SSR flows.
Use it in Vite-based Arrow apps, including projects generated by create-arrow-js.
Install
pnpm add -D @arrow-js/vite-plugin-arrowExample
import { defineConfig } from 'vite'
import { arrow } from '@arrow-js/vite-plugin-arrow'
export default defineConfig({
plugins: [arrow()],
})