MorJS 代码维度 mor.config.ts 配置示例
import { defineConfig } from '@morjs/cli'
export default defineConfig([
{
name: 'alipay',
conditionalCompile: {
context: {
test: '123'
}
}
},
{
name: 'wechat',
// 自定义条件编译的变量
conditionalCompile: {
context: {
test: '456'
}
}
}
])