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.
45 lines
1000 B
45 lines
1000 B
2 years ago
|
import { fileURLToPath, URL } from "url";
|
||
|
|
||
|
import { defineConfig } from "vite";
|
||
|
import Vue from "@vitejs/plugin-vue";
|
||
|
import VueJsx from "@vitejs/plugin-vue-jsx";
|
||
|
import path from "path";
|
||
|
import Dts from "vite-plugin-dts";
|
||
|
|
||
|
export default defineConfig({
|
||
|
plugins: [
|
||
|
Vue(),
|
||
|
VueJsx(),
|
||
|
Dts({
|
||
|
entryRoot: "./src",
|
||
|
outputDir: "./dist",
|
||
|
insertTypesEntry: true,
|
||
|
}),
|
||
|
],
|
||
|
resolve: {
|
||
|
alias: {
|
||
|
"@": fileURLToPath(new URL("./src", import.meta.url)),
|
||
|
},
|
||
|
},
|
||
|
build: {
|
||
|
outDir: path.resolve(__dirname, "dist"),
|
||
|
lib: {
|
||
|
entry: path.resolve(__dirname, "src/index.ts"),
|
||
|
name: "HaloAdminShared",
|
||
|
formats: ["es", "cjs", "umd", "iife"],
|
||
|
fileName: (format) => `halo-admin-shared.${format}.js`,
|
||
|
},
|
||
|
rollupOptions: {
|
||
|
external: ["vue", "vue-router"],
|
||
|
output: {
|
||
|
globals: {
|
||
|
vue: "Vue",
|
||
|
"vue-router": "VueRouter",
|
||
|
},
|
||
|
exports: "named",
|
||
|
},
|
||
|
},
|
||
|
sourcemap: true,
|
||
|
},
|
||
|
});
|