代码拉取完成,页面将自动刷新
同步操作将从 ~朴:shu/uni-pptx 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
import { defineConfig } from "vite";
import fs from "node:fs";
/**
* 获取 package.json 中的版本号
* @returns { string } version
*/
function getAppVersion() {
const pkg = JSON.parse(fs.readFileSync("./package.json", "utf-8"));
return pkg.version;
}
/**
* new Date 获取日期
* @returns { string }
*/
function getDate() {
const now = new Date();
const year = now.getFullYear(); // 年份
const month = now.getMonth() + 1; // 月份,从0开始,所以加1
const day = now.getDate(); // 日期
const hours = now.getHours(); // 小时
const minutes = now.getMinutes(); // 分钟
const seconds = now.getSeconds(); // 秒
const result = `${year}-${month}-${day} ${hours}:${minutes}:${seconds}`;
return result;
}
// https://vitejs.dev/config/
export default defineConfig(({ mode }) => {
// 处理生产环境变量为 undefind 异常问题
process.env.VITE__UNI_PPTX_VERSION__ = getAppVersion();
process.env.VITE__UNI_PPTX_LAST_UPDATE__ = getDate(); // 最后更新时间
if (mode === "lib") {
return {
build: {
// 打包成第三方库-不使用 index.html 为入口文件
lib: {
entry: "src/core/index.ts",
name: "uni-pptx",
formats: ["es", "cjs", "umd"],
fileName: "uni-pptx",
},
},
};
}
return {
server: {
open: true,
port: 3000,
host: "0.0.0.0",
},
};
});
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。