1 Star 4 Fork 0

z88/vue3-gantt-component

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
vite.config.ts 714 Bytes
一键复制 编辑 原始数据 按行查看 历史
z88 提交于 2024-04-06 11:41 . update
import { defineConfig } from "vite";
import vue from "@vitejs/plugin-vue";
import dts from "vite-plugin-dts";
import libCss from "vite-plugin-libcss";
import path from "path";
export default defineConfig({
plugins: [
vue(),
libCss(),
dts({
include: ["./src/packages/**/*.{vue,ts,css}"],
}),
],
// 打包配置
build: {
outDir: "dist",
lib: {
entry: path.resolve(__dirname, "./src/packages/index.ts"),
name: "vue3-gantt-component",
fileName: (format) => `vue3-gantt-component.${format}.js`,
},
rollupOptions: {
external: ["vue"],
output: {
dir: "dist",
globals: {
vue: "Vue",
},
},
},
},
});
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zhouruixin_0/vue3-gantt.git
[email protected]:zhouruixin_0/vue3-gantt.git
zhouruixin_0
vue3-gantt
vue3-gantt-component
master

搜索帮助