forked from freeCodeCamp/pantry-for-good
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.prod.js
53 lines (51 loc) · 1.23 KB
/
webpack.config.prod.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
const webpack = require('webpack')
const merge = require('webpack-merge')
const ExtractTextPlugin = require('extract-text-webpack-plugin')
const CopyWebpackPlugin = require('copy-webpack-plugin')
const autoprefixer = require('autoprefixer')
const {resolve} = require('path')
const common = require('./webpack.config')
module.exports = merge(common, {
entry: {
app: [
'babel-polyfill',
'whatwg-fetch',
resolve(__dirname, 'client', 'app.js')
]
},
output: {
path: resolve(__dirname, 'dist', 'client'),
filename: '[name].js',
publicPath: '/'
},
module: {
rules: [
{
test: /\.css$/,
use: ExtractTextPlugin.extract('css-loader?sourceMap&postcss-loader')
}
]
},
plugins: [
new webpack.LoaderOptionsPlugin({
minimize: true,
debug: false,
options: {
postcss: [
autoprefixer(),
]
}
}),
new webpack.DefinePlugin({
'process.env': {
'NODE_ENV': JSON.stringify('production')
}
}),
new ExtractTextPlugin('styles.css'),
new CopyWebpackPlugin([{
from: resolve(__dirname, 'assets'),
to: resolve(__dirname, 'dist', 'client')
}])
],
devtool: 'cheap-module-source-map'
})