Type: Featuregood first issue
倉庫指標
- 星標
- (111 顆星)
- PR 合併指標
- (30 天內沒有已合併 PR)
描述
support like configureWebpack of vue.config.js:
refs:
- https://cli.vuejs.org/guide/webpack.html#simple-configuration
- https://cli.vuejs.org/config/#configurewebpack
configureRollup
- Type:
Object|Function
If the value is an Object, it will be merged into the final config
e.g.
const resolve = require('rollup-plugin-node-resolve')
module.exports = {
pluginOptions: {
p11n: {
configureRollup: {
plugins: [resolve({
customResolveOptions: {
moduleDirectory: 'node_modules'
}
})],
external: ['lodash']
}
}
}
}