mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2025-12-12 03:01:16 +00:00
10 lines
231 B
TypeScript
10 lines
231 B
TypeScript
import { defineConfig } from 'vite';
|
|
import baseConfigFn from '../../vite.base.config'
|
|
|
|
export default defineConfig(async () => {
|
|
return baseConfigFn({
|
|
name: 'LowCodePluginCommand',
|
|
defaultFormats: ['es', 'cjs']
|
|
})
|
|
});
|