UNPKG

laravel-mix

Version:

The power of webpack, distilled for the rest of us.

13 lines (10 loc) 276 B
let { mergeSmart } = require('./MergeSmart'); /** @typedef {import('webpack').Configuration} Configuration */ /** * * @param {Configuration} configA * @param {Configuration} configB */ module.exports = (configA, configB) => { return mergeSmart(configA, configB); };