10 lines
307 B
JavaScript
10 lines
307 B
JavaScript
/* eslint-disable import/no-commonjs */
|
|
/* eslint-disable @typescript-eslint/no-var-requires */
|
|
const H5FixPlugin = require('@antmjs/plugin-h5-fix')
|
|
const commonChain = require('./commonChain')
|
|
|
|
module.exports = function (chain) {
|
|
chain.plugin('H5FixPlugin').use(new H5FixPlugin())
|
|
commonChain(chain)
|
|
}
|