iso-639-1
Version:
ISO-639-1 codes
21 lines (18 loc) • 407 B
JavaScript
const path = require('path');
const { CleanWebpackPlugin } = require('clean-webpack-plugin');
// webpack configuration
let webpackConfig = {
mode: 'production',
entry: {
index: './src/index.js',
},
output: {
path: path.resolve(__dirname, `./build`),
filename: '[name].js',
library: 'ISO6391',
},
plugins: [
new CleanWebpackPlugin(),
],
};
module.exports = webpackConfig;