新增支付配置备份导出功能
This commit is contained in:
@@ -37,6 +37,14 @@ export default defineConfig({
|
||||
},
|
||||
build: {
|
||||
rollupOptions: {
|
||||
onwarn(warning, warn) {
|
||||
const isVueusePureWarning =
|
||||
warning.message.includes("#__PURE__") &&
|
||||
typeof warning.id === "string" &&
|
||||
warning.id.includes("node_modules/@vueuse/core/");
|
||||
if (isVueusePureWarning) return;
|
||||
warn(warning);
|
||||
},
|
||||
output: {
|
||||
manualChunks(id) {
|
||||
if (!id.includes("node_modules")) return;
|
||||
|
||||
Reference in New Issue
Block a user