UNPKG

414 BJavaScriptView Raw
1const webpackConfig = require('../../webpack.config.base');
2
3const libraryName = 'service.middle.bundle';
4
5webpackConfig.entry = ['babel-polyfill', `${__dirname}/src/index.js`];
6
7webpackConfig.output.path = `${__dirname}/dist`;
8webpackConfig.output.publicPath = `${__dirname}\\dist`;
9webpackConfig.output.filename = `${libraryName}.js`;
10webpackConfig.output.library = libraryName;
11
12module.exports = webpackConfig;