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