mirror of
https://gitee.com/dapppp/ruoyi-plus-vben5.git
synced 2025-12-30 09:42:25 +00:00
14 lines
255 B
TypeScript
14 lines
255 B
TypeScript
|
|
import { defineBuildConfig } from 'unbuild';
|
||
|
|
|
||
|
|
export default defineBuildConfig({
|
||
|
|
clean: true,
|
||
|
|
declaration: true,
|
||
|
|
entries: [
|
||
|
|
'src/index',
|
||
|
|
'src/constants/index',
|
||
|
|
'src/utils/index',
|
||
|
|
'src/colorful/index',
|
||
|
|
'src/cache/index',
|
||
|
|
],
|
||
|
|
});
|