{"body":"const path = require('path');\nconst HtmlWebpackPlugin = require('html-webpack-plugin');\nconst CleanWebpackPlugin = require('clean-webpack-plugin');\n\nmodule.exports = {\n    entry: {\n        app: './metrics_app.js',\n    },\n    devtool: 'inline-source-map',\n    devServer: {\n        contentBase: './dist'\n    },\n    plugins: [\n        new CleanWebpackPlugin(['dist']),\n        new HtmlWebpackPlugin({\n            title: 'Development'\n        })\n    ],\n    output: {\n        filename: '[name].bundle.js',\n        path: path.resolve(__dirname, 'dist')\n    }\n};","name":"","extension":"txt","url":"https://www.irccloud.com/pastebin/kEEYJ6QX","modified":1516284291,"id":"kEEYJ6QX","size":555,"lines":23,"own_paste":false,"theme":"","date":1516284291}