2024-07-30 21:05:03 +08:00
|
|
|
import { defineBuildConfig } from 'unbuild';
|
|
|
|
|
|
|
|
export default defineBuildConfig({
|
|
|
|
clean: true,
|
|
|
|
declaration: true,
|
|
|
|
entries: [
|
2024-08-17 22:38:37 +08:00
|
|
|
'src/store',
|
2024-07-30 21:05:03 +08:00
|
|
|
'src/constants/index',
|
|
|
|
'src/utils/index',
|
2024-08-07 21:28:25 +08:00
|
|
|
'src/color/index',
|
2024-07-30 21:05:03 +08:00
|
|
|
'src/cache/index',
|
2024-10-13 18:33:43 +08:00
|
|
|
'src/global-state',
|
2024-07-30 21:05:03 +08:00
|
|
|
],
|
|
|
|
});
|