Files
plugin-starter/admin-frontend/vite.config.ts
2022-07-08 16:17:16 +08:00

39 lines
958 B
TypeScript

import { fileURLToPath, URL } from "url";
import { defineConfig } from "vite";
import vue from "@vitejs/plugin-vue";
import vueJsx from "@vitejs/plugin-vue-jsx";
// https://vitejs.dev/config/
export default defineConfig({
plugins: [vue(), vueJsx()],
resolve: {
alias: {
"@": fileURLToPath(new URL("./src", import.meta.url)),
},
},
build: {
outDir: fileURLToPath(
new URL("../src/main/resources/admin", import.meta.url)
),
emptyOutDir: true,
lib: {
entry: "src/index.ts",
name: "PluginTemplate",
formats: ["iife"],
fileName: () => "main.js",
},
rollupOptions: {
external: ["vue", "@halo-dev/shared", "@halo-dev/components","vue-router"],
output: {
globals: {
vue: "Vue",
"vue-router": "VueRouter",
"@halo-dev/components": "HaloComponents",
"@halo-dev/admin-shared": "HaloAdminShared",
},
},
},
},
});