testsaurav-publish
Version:
ABA File Parser library for running Rabo specific rules for Online channel
22 lines (21 loc) • 585 B
JavaScript
const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');
// For optimization of the binary file size
module.exports = {
entry: path.resolve(__dirname, ''),
output: {
path: path.resolve(__dirname,'build'),
filename: 'index.js',
// libraryTarget: 'commonjs'
},
devServer: {
port: 3000,
contentBase: path.resolve(__dirname, 'build'),
},
plugins: [
new HtmlWebpackPlugin({
filename: './index.html'
}),
// new MomentLocalesPlugin()
]
}