mirror of
https://gitee.com/dapppp/ruoyi-plus-vben5.git
synced 2026-03-10 00:11:10 +08:00
15 lines
275 B
TypeScript
15 lines
275 B
TypeScript
import vue from '@vitejs/plugin-vue';
|
|
import { defineConfig } from 'vite';
|
|
|
|
export default defineConfig({
|
|
plugins: [vue()],
|
|
build: {
|
|
lib: {
|
|
entry: './src/index.ts',
|
|
name: 'MenuUI',
|
|
fileName: () => 'index.mjs',
|
|
formats: ['es'],
|
|
},
|
|
},
|
|
});
|