forked from mariaKoFyber/material-ui-phone-input
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwebpack.config.js
37 lines (36 loc) · 919 Bytes
/
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
const path = require('path')
const webpack = require('webpack')
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin
const HtmlWebpackPlugin = require('html-webpack-plugin')
const DynamicCdnWebpackPlugin = require('dynamic-cdn-webpack-plugin');
module.exports = {
mode: "development",
entry: {
phone: ["./lib/example.js"],
},
output: {
path: path.join(__dirname, 'public'),
filename: "[name].js"
},
watchOptions: {
poll: true
},
devServer: {
contentBase: path.join(__dirname, 'public'),
compress: true,
historyApiFallback: true
},
optimization: {
splitChunks: {
chunks: 'all'
}
},
plugins: [
new HtmlWebpackPlugin({
filename: path.resolve(__dirname, 'public/index.html'),
template: path.resolve(__dirname, 'index.html'),
}),
new DynamicCdnWebpackPlugin(),
// new BundleAnalyzerPlugin()
]
}