https://github.com/bf3rm/vite-plugin-vext
https://github.com/bf3rm/vite-plugin-vext
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/bf3rm/vite-plugin-vext
- Owner: BF3RM
- License: mit
- Created: 2022-11-08T22:49:16.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-11-09T01:19:08.000Z (over 2 years ago)
- Last Synced: 2025-02-03T08:47:52.360Z (4 months ago)
- Language: TypeScript
- Size: 11.7 KB
- Stars: 1
- Watchers: 5
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Vite Plugin VEXT
A plugin to automatically build your vuic file for Venice Unleashed## Installation
With npm
```
npm install --save-dev vite-plugin-vext
```With yarn
```
yarn -D vite-plugin-vext
```## Usage
When installing the VEXT plugin it will automatically download the latest vuicc.exe, so you don't have to download it.
The usage of this plugin is simple, it is just a regular Vite plugin and can be used as follows:
```js
// vite.config.ts
import { defineConfig } from 'vite'import vext from 'vite-plugin-vext';
export default defineConfig({
plugins: [vext()],
})
```