1 Star 0 Fork 4

lucky4018/uni-pptx

forked from ~朴:shu/uni-pptx 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
vite.config.ts 515 Bytes
一键复制 编辑 原始数据 按行查看 历史
import { defineConfig } from "vite";
// https://vitejs.dev/config/
export default defineConfig(({ mode }) => {
if (mode === "lib") {
return {
build: {
// 打包成第三方库-不使用 index.html 为入口文件
lib: {
entry: "src/core/index.ts",
name: "unippt",
formats: ["es", "cjs", "umd"],
fileName: "unippt",
},
},
};
}
return {
server: {
open: true,
port: 3000,
host: "0.0.0.0",
},
};
});
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/lucky4018/uni-pptx.git
git@gitee.com:lucky4018/uni-pptx.git
lucky4018
uni-pptx
uni-pptx
master

搜索帮助