forked from lensesio/schema-registry-ui
-
Notifications
You must be signed in to change notification settings - Fork 1
/
webpack.config.js
124 lines (117 loc) · 3.54 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
const path = require("path");
const webpack = require("webpack");
const HtmlWebpackPlugin = require("html-webpack-plugin");
const ExtractTextPlugin = require("extract-text-webpack-plugin");
const CopyWebpackPlugin = require("copy-webpack-plugin");
const CleanWebpackPlugin = require('clean-webpack-plugin');
const ENV = process.env.NODE_ENV || 'development';
const isProd = ENV === 'production';
console.log('Building for ' + ENV);
const config = {
watch: !isProd,
devtool: isProd ? "cheap-source-map" : "cheap-module-source-map",
entry: {
app: "./src/app.js"
},
output: {
filename: "js/[name].[hash].bundle.js",
path: path.resolve(__dirname, "dist"),
publicPath: ""
},
module: {
rules: [
{
test: /\.(js|jsx)$/,
loader: "babel-loader",
exclude: /node_modules/,
query: {
plugins: ['transform-decorators-legacy',
'transform-runtime',
'transform-object-rest-spread',
'transform-class-properties'],
presets: [['es2015', { modules: false }], 'stage-1']
}
},
{
test: /\.css$/,
use: ExtractTextPlugin.extract({
fallback: "style-loader",
use: "css-loader"
})
},
{
test: /\.woff(2)?(\?v=[0-9]\.[0-9]\.[0-9])?$/,
loader: "url-loader?limit=10000&mimetype=application/font-woff&outputPath=&publicPath=../../"
},
{
test: /\.(ttf|eot|svg)(\?v=[0-9]\.[0-9]\.[0-9])?$/,
loader: "file-loader"
},
{
test: /\.html$/,
loader: "html-loader"
}
]
},
plugins: [
new ExtractTextPlugin({
filename: "assets/css/[name].[contenthash].css"
}),
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.html" }),
new CopyWebpackPlugin([{
from: __dirname + '/src/assets',
to: path.resolve(__dirname, "dist/src/assets")
}]),
new CopyWebpackPlugin([{
from: __dirname + '/env.js',
to: path.resolve(__dirname, "dist/")
}]),
new webpack.HotModuleReplacementPlugin()
],
resolve: {
alias: {
}
},
devServer: {
host: "localhost",
port: "8080",
contentBase: path.resolve(__dirname, "dist"),
//compress: true,
historyApiFallback: true,
hot: true,
inline: true,
https: false,
noInfo: true
}
};
if (isProd) {
config.plugins.push(
new CleanWebpackPlugin(['dist']),
new webpack.optimize.UglifyJsPlugin({
compress: {
warnings: false,
screw_ie8: true,
conditionals: true,
unused: true,
comparisons: true,
sequences: true,
dead_code: true,
evaluate: true,
join_vars: true,
if_return: true
},
output: {
comments: false
}
}))
}
module.exports = config;