forked from UXPin/adele
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
56 lines (55 loc) · 1.38 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
const path = require('path');
const webpack = require('webpack');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const CopyWebpackPlugin = require('copy-webpack-plugin');
module.exports = (env = {}) => {
const isProduction = env.production === true;
const isLocal = env.local === true;
return {
entry: ['./src/index.js'],
output: {
path: path.resolve(__dirname, 'build'),
filename: 'bundle.js',
publicPath: (() => {
if (isProduction) return '/build/';
else if (isLocal) return './';
return '/';
})(),
},
resolve: {
modules: [__dirname, 'node_modules'],
extensions: ['*', '.js', '.jsx'],
},
devServer: {
historyApiFallback: true,
compress: true,
},
module: {
rules: [
{
use: ['babel-loader', 'eslint-loader'],
test: /\.jsx?$/,
exclude: /node_modules/,
},
{
use: ['file-loader'],
test: /\.(jpe?g|png|gif)$/i,
},
{
use: ['raw-loader'],
test: /\.svg$/,
},
],
},
plugins: [
new HtmlWebpackPlugin({
template: 'src/index.html',
favicon: './src/assets/favicon.ico',
}),
new CopyWebpackPlugin([
{ from: './robots.txt', to: './' },
{ from: './googlefae8444566416c5a.html', to: './' },
]),
],
};
};