https://github.com/srect/taro_dd
taro 钉钉小程序 demo
https://github.com/srect/taro_dd
Last synced: 8 months ago
JSON representation
taro 钉钉小程序 demo
- Host: GitHub
- URL: https://github.com/srect/taro_dd
- Owner: sRect
- Created: 2021-09-14T09:39:54.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-11-03T07:59:08.000Z (over 4 years ago)
- Last Synced: 2025-01-02T15:45:23.912Z (over 1 year ago)
- Language: JavaScript
- Size: 187 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Taro 写钉钉小程序
> [钉钉小程序](http://taro-docs.jd.com/taro/docs/GETTING-STARTED#%E9%92%89%E9%92%89%E5%B0%8F%E7%A8%8B%E5%BA%8F)
___
### 安装插件
```shell
yarn add @tarojs/plugin-platform-alipay-dd
```
### 修改配置文件
+ config/index.js
```diff
{
- plugins: [],
+ plugins: [
+ '@tarojs/plugin-platform-alipay-dd'
+ ],
}
```
+ package.json
```diff
{
"scripts": {
+ "build:dd": "taro build --type dd",
+ "dev:dd": "set NODE_ENV=production && taro build --type dd --watch",
}
}
```