-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
109 lines (91 loc) · 2.19 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
/* eslint-env node */
const path = require('path')
const webpack = require('webpack')
const ExtractTextPlugin = require('extract-text-webpack-plugin')
const DEBUG = process.env.NODE_ENV !== 'production'
const PLUGINS = [
new ExtractTextPlugin('[name].css', {
allChunks: true,
disable: DEBUG,
}),
]
try {
const WebpackNotifier = require('webpack-notifier')
PLUGINS.push(
new WebpackNotifier({
title: 'WhoLikes',
contentImage: './static/favicon/heart@192.png',
alwaysNotify: true,
})
)
}
catch (e) {
// Do nothing
}
const PLUGINS_DEV = [
new webpack.NoErrorsPlugin(),
]
const PLUGINS_PROD = [
new webpack.DefinePlugin({
'process.env.NODE_ENV': '"production"'
}),
new webpack.optimize.DedupePlugin(),
new webpack.optimize.OccurenceOrderPlugin(true),
new webpack.optimize.UglifyJsPlugin({
sourceMap: false,
compress: {
warnings: false
}
})
]
const ENTRY = DEBUG ? [
'webpack-dev-server/client?http://localhost:7777',
'webpack/hot/only-dev-server'
] : []
module.exports = {
devtool: DEBUG ? '#inline-source-map' : 'source-map',
debug: DEBUG,
progress: true,
entry: ENTRY.concat(['./static/js/app.js']),
output: {
path: './static/dist',
filename: 'app.bundle.js',
pathinfo: DEBUG,
publicPath: DEBUG ? 'http://localhost:7777/' : '/static/dist',
},
resolve: {
root: path.join(__dirname, 'static/js'),
extensions: ['', '.js']
},
plugins: PLUGINS.concat(DEBUG ? PLUGINS_DEV : PLUGINS_PROD),
module: {
loaders: [
{
test: /\.js$/,
include: path.join(__dirname, 'static/js'),
loader: (DEBUG ? 'react-hot!' : '') + 'babel?cacheDirectory'
},
{
test: /\.sass$/,
loader: ExtractTextPlugin.extract('style',
'css!autoprefixer!sass?indentedSyntax&includePaths[]=./static/styles')
},
{
test: /\.scss$/,
loader: ExtractTextPlugin.extract('style',
'css!autoprefixer!sass&includePaths[]=./static/styles')
},
{
test: /\.woff$/,
loader: 'url'
}
]
},
devServer: {
contentBase: './static/dist',
port: 7777,
hot: true,
inline: true,
noInfo: true,
},
}