webpack-native-miniprogram-plugin
v1.0.8
Published
uni-app项目支持原生小程序开发
Downloads
11
Readme
原生小程序开发
uni-app项目支持原生小程序开发
配置
// vue.config.js
// plugins
[
new WebpackNativeMiniProgramPlugin({
// 模式,非生产时将开启文件变更监控
production: false,
// 原生开发配置
nativeDirs: [
{
// 指定原生开发目录
name: 'pagesIndependent',
// 是否独立分包
independent: true,
// 分包npm依赖
dependencies: ['zan-poster']
}
]
})
]