shreyas-ui-metrics
Version:
UI metrics tracking for Webex widgets
13 lines (10 loc) • 327 B
JavaScript
const {merge} = require('webpack-merge');
const path = require('path');
const baseConfig = require('../../../webpack.config');
module.exports = merge(baseConfig, {
output: {
path: path.resolve(__dirname, 'dist'),
filename: 'index.js', // Set the output filename to index.js
libraryTarget: 'commonjs2',
},
});