mirror of
https://gitcode.com/gh_mirrors/vue/vue-vben-admin
synced 2025-12-30 05:12:24 +00:00
11 lines
183 B
TypeScript
11 lines
183 B
TypeScript
|
|
import { defineBuildConfig } from 'unbuild';
|
||
|
|
|
||
|
|
export default defineBuildConfig({
|
||
|
|
clean: true,
|
||
|
|
entries: ['src/index'],
|
||
|
|
declaration: true,
|
||
|
|
rollup: {
|
||
|
|
emitCJS: true,
|
||
|
|
},
|
||
|
|
});
|