mirror of https://github.com/halo-dev/halo-admin
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
557 B
23 lines
557 B
import { defineConfig } from "histoire";
|
|
import type { UserConfig } from "vite";
|
|
import { HstVue } from "@histoire/plugin-vue";
|
|
|
|
export default defineConfig({
|
|
setupFile: "./src/histoire.setup.ts",
|
|
plugins: [HstVue()],
|
|
vite: {
|
|
plugins: [
|
|
{
|
|
name: "disable-lib-plugin",
|
|
config(config: UserConfig) {
|
|
if (!config || !config.build || !config.build.rollupOptions) {
|
|
return;
|
|
}
|
|
config.build.lib = false;
|
|
config.build.rollupOptions.external = [];
|
|
},
|
|
},
|
|
],
|
|
},
|
|
});
|