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