-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
47 lines (45 loc) · 1.14 KB
/
webpack.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
const path = require("path");
const webpack = require("webpack");
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;
const HtmlWebpackPlugin = require('html-webpack-plugin');
module.exports = {
entry: path.resolve(__dirname, "src", "index.js"),
output: {
chunkFilename: "[name].js",
filename: "[name].js",
path: path.resolve(__dirname, "dist"),
publicPath: "/some_dir/"
},
module: {
rules: [
{
test: /\.js/,
use: 'babel-loader',
exclude: /node_modules/,
}
]
},
plugins: [
new webpack.optimize.CommonsChunkPlugin({
name: 'vendor',
minChunks: function (module) {
return module.context && module.context.indexOf('node_modules') !== -1;
}
}),
new webpack.optimize.CommonsChunkPlugin({
name: 'manifest'
}),
new HtmlWebpackPlugin({
template: "./src/index.ejs",
}),
//new BundleAnalyzerPlugin()
],
devtool: "cheap-eval-source-map",
devServer: {
contentBase: path.resolve(__dirname, 'dist'),
compress: true,
historyApiFallback: true,
port: 3000,
publicPath: "/some_dir/"
}
};