chore:修改vite打包转编码限制大小为1kb

This commit is contained in:
Xwen
2023-12-15 00:23:58 +08:00
parent 7d9e6f3a23
commit f7b597ab6b

View File

@@ -37,5 +37,9 @@ export default defineConfig(({ command, mode }) => {
}, },
}, },
}, },
// 增加新的配置
build: {
assetsInlineLimit: 1,
},
}; };
}); });