0.0.4 • Published 1 month ago

@dmno/vite-integration v0.0.4

Weekly downloads
-
License
MIT
Repository
github
Last release
1 month ago

Check out the docs for more information on how to use DMNO + Vite.

THIS IS PREVIEW SOFTWARE AND SUBJECT TO RAPID CHANGE

If you have any questions, please reach out to us on Discord.


@dmno/vite-integration

Provides tooling to integrate dmno into your vite dev/build workflow

How to use

Import and initialize our vite plugin and add to the plugins section in your vite.config.ts file

import { dmnoViteIntegration } from '@dmno/vite-integration';

// https://vitejs.dev/config/
export default defineConfig({
  // ... your existing config
  plugins: [
    // ... the rest of your plugins
    vue(),
    dmnoViteIntegration(),
  ],

});