mirror of
https://github.com/vbenjs/vue-vben-admin.git
synced 2025-01-24 02:00:25 +08:00
11 lines
207 B
TypeScript
11 lines
207 B
TypeScript
import { defineBuildConfig } from 'unbuild';
|
|
|
|
export default defineBuildConfig({
|
|
clean: true,
|
|
declaration: true,
|
|
entries: ['src/index', './src/postcss.config'],
|
|
rollup: {
|
|
emitCJS: true,
|
|
},
|
|
});
|