MorJS 怎么编译成微信或抖音小程序

2024-01-17 14:07 更新

以编译成微信小程序为例

  1. 首先明确我们编译目标为微信小程序,需要在 mor.config.ts 配置中添加编译为微信的配置,其中 target 值设置为 wechat(配置参考 MorJS 基础 - 配置 - target - 编译目标平台)
  2. 给这份配置起一个配置名字,把 name 设置为配置名称(如:wechat),其他配置可与基础配置相同保持不变
  3. package.jsonscript 中添加编译为微信的命令 "dev:wechat": "mor compile -w --name wechat"
  4. 终端运行 npm run dev:wechat,产物 dist/wechat 即为编译成微信的产物,用微信 IDE 打开即可

更多具体配置项可查阅 MorJS 基础 - 配置

// mor.config.ts
import { defineConfig } from '@morjs/cli'

export default defineConfig([
  ...
  {
    name: 'wechat', // 配置名称
    sourceType: 'alipay', // 源码 DSL 类型
    target: 'wechat', // 编译目标平台
    compileType: 'miniprogram', // 编译类型
    compileMode: 'bundle', // 编译模式
  }
]


以上内容是否对您有帮助:
在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号