UNPKG

vite-plugin-vue-style-bundler

Version:

`Automatically extract the `css` in `Vue` components and bundle them into the `js` source code, and then automatically insert the style into the head at runtime.

10 lines (7 loc) 238 B
import { Plugin } from 'vite'; interface StyleBundlerOptions { lessOptions?: any; sassOptions?: any; } declare const _default: (options?: StyleBundlerOptions) => Plugin; export { type StyleBundlerOptions, _default as default };