mirror of https://github.com/halo-dev/halo
12 lines
207 B
TypeScript
12 lines
207 B
TypeScript
![]() |
import { defineBuildConfig } from "unbuild";
|
||
![]() |
|
||
|
export default defineBuildConfig({
|
||
![]() |
entries: ["src/index"],
|
||
![]() |
declaration: true,
|
||
|
clean: true,
|
||
|
rollup: {
|
||
|
emitCJS: true,
|
||
|
},
|
||
![]() |
externals: ["axios"],
|
||
|
});
|