Files
2025-10-22 07:50:31 +08:00

12 lines
295 B
JavaScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

const requireFn = function(path) {
return require(path);
}
const initConfig = {
baseDir: __dirname, // 云函数根目录地址
requireFn,
customUtil :{
// 你自己的工具包写这里后即可听过customUtil.mynpm1调用
// mynpm1:mynpm1
}
};
module.exports = initConfig;