Skip to content

Commit 45ebf52

Browse files
committed
improve the webpack configuration
1 parent cfa8da4 commit 45ebf52

File tree

1 file changed

+98
-42
lines changed

1 file changed

+98
-42
lines changed

src/frontend/webpack.config.js

+98-42
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,22 @@ var autoprefixer = require('autoprefixer');
55

66
var ExtractTextPlugin = require('extract-text-webpack-plugin');
77

8-
require('babel-polyfill');
9-
108
// note: we prefer using includes over excludes, as this will give us finer
119
// control over what is actually transpiled
1210
var appDirectory = path.resolve(__dirname, 'app');
1311
var includes = [appDirectory];
1412

15-
module.exports = {
13+
// specify the configuration to use for developnet
14+
var developConfig = {
15+
// use the dev server included with webpack for live-reload development
16+
// note: that the port and host can be changed here if require
1617
devServer: {
1718
contentBase: '/tmp/public',
1819
historyApiFallback: true,
1920
noInfo: true,
2021
host: '0.0.0.0',
2122
port: 3000,
23+
// proxy api calls to a container named api
2224
proxy: {
2325
'/api/**': {
2426
target: 'http://api',
@@ -40,7 +42,9 @@ module.exports = {
4042
performance: {
4143
hints: false
4244
},
43-
devtool: '#eval-source-map',
45+
devtool: '#cheap-module-eval-source-map',
46+
47+
// define the entry point of the application
4448
entry: {
4549
app: [path.resolve(__dirname, 'app/main.js')]
4650
},
@@ -57,79 +61,117 @@ module.exports = {
5761
loader: 'vue-loader',
5862
options: {
5963
loaders: {
60-
stylus: ExtractTextPlugin.extract({
61-
use: ['css-loader', 'stylus-loader'],
62-
fallback: 'vue-style-loader'
63-
})
64+
stylus: 'vue-style-loader!css-loader!stylus-loader',
65+
styl: 'vue-style-loader!css-loader!stylus-loader',
66+
js: 'babel-loader'
6467
}
6568
},
6669
include: includes
70+
}, {
71+
// parse javascript files (use babel to transpile)
72+
// note that presets and plugins must be defined as plugin
73+
// settings (at least for now)
74+
test: /\.js$/,
75+
loader: 'babel-loader',
76+
include: includes
77+
}, {
78+
// parse stylus styles
79+
test: /\.styl$/,
80+
use: ['style-loader', 'css-loader', 'stylus-loader'],
81+
include: includes
6782
}, {
6883
// parse css styles
6984
test: /\.css$/,
7085
use: ['style-loader','css-loader','postcss-loader'],
7186
include: includes
87+
}
88+
]
89+
},
90+
resolve: {
91+
alias: {
92+
// resolve vue to non minified bundle for development
93+
vue: 'vue/dist/vue.common.js'
94+
}
95+
}
96+
};
97+
98+
// specify configuration to be used to build for production
99+
var buildConfig = {
100+
// add babel polyfill to support older browsers
101+
entry: {
102+
app: ['babel-polyfill', path.resolve(__dirname, 'app/main.js')]
103+
},
104+
// use the same configuration for the output as in dev mode
105+
output: developConfig.output,
106+
// generate source maps for the code
107+
devtool: '#source-map',
108+
// specify the module configuration
109+
module: {
110+
rules: [
111+
{
112+
// parse vue components
113+
test: /\.vue$/,
114+
loader: 'vue-loader',
115+
options: {
116+
loaders: {
117+
stylus: ExtractTextPlugin.extract({
118+
use: ['css-loader', 'stylus-loader'],
119+
fallback: 'vue-style-loader'
120+
}),
121+
styl: ExtractTextPlugin.extract({
122+
use: ['css-loader', 'stylus-loader'],
123+
fallback: 'vue-style-loader'
124+
}),
125+
js: 'babel-loader'
126+
}
127+
},
128+
include: includes
72129
}, {
73130
// parse javascript files (use babel to transpile)
131+
// note that presets and plugins must be defined as plugin
132+
// settings (at least for now)
74133
test: /\.js$/,
75134
loader: 'babel-loader',
76-
query: {
77-
presets: ['es2015', 'stage-0'],
78-
plugins: ['transform-runtime']
79-
},
80135
include: includes
81-
}, {
136+
}, {
82137
// parse stylus styles
83138
test: /\.styl$/,
84139
loader: ExtractTextPlugin.extract({
85140
use: ['css-loader', 'stylus-loader'],
86141
fallback: 'style-loader'
87142
}),
88143
include: includes
144+
}, {
145+
// parse css styles
146+
test: /\.css$/,
147+
loader: ExtractTextPlugin.extract({
148+
use: ['css-loader', 'postcss-loader'],
149+
fallback: 'style-loader'
150+
}),
151+
include: includes
89152
}
90153
]
91154
},
92-
resolve: {
93-
alias: {
94-
// resolve vue to non minified bundle for development
95-
vue: 'vue/dist/vue.js'
96-
}
97-
},
155+
// define plugins to use
98156
plugins: [
99-
// extract all styles into one single css file
100-
new ExtractTextPlugin({
101-
filename: 'app.css',
102-
allChunks: true
103-
})
104-
]
105-
};
106-
107-
108-
if (process.env.NODE_ENV === 'production') {
109-
module.exports.devtool = '#source-map';
110-
111-
// use babel polyfill for production builds (for ie support)
112-
module.exports.entry = {
113-
app: ['babel-polyfill', path.resolve(__dirname, 'app/main.js')]
114-
},
115-
116-
// resolve vue to the minified module
117-
module.exports.resolve = {},
118-
119-
// http://vue-loader.vuejs.org/en/workflow/production.html
120-
module.exports.plugins = (module.exports.plugins || []).concat([
121157
new webpack.DefinePlugin({
122158
'process.env': {
123159
NODE_ENV: '"production"'
124160
}
125161
}),
162+
// extract all styles into one single css file
163+
new ExtractTextPlugin({
164+
filename: 'app.css',
165+
allChunks: true
166+
}),
126167
// use babel to transpile js code
127168
new webpack.LoaderOptionsPlugin({
128169
minimize: true,
129170
debug: false,
130171
options: {
131172
// babel needs to set the context path here!
132173
context: __dirname,
174+
// babel presets and plugins need to be specified here
133175
babel: {
134176
presets: ['es2015', 'stage-0'],
135177
plugins: ['transform-runtime']
@@ -154,5 +196,19 @@ if (process.env.NODE_ENV === 'production') {
154196
comments: false
155197
}
156198
})
157-
]);
199+
]
200+
};
201+
202+
203+
// override some build config to extract the text
204+
205+
// use specific configuration depending on build mode
206+
if (process.env.NODE_ENV !== 'production') {
207+
console.log('-- using development config');
208+
module.exports = developConfig;
209+
210+
} else {
211+
console.log('-- using production config');
212+
module.exports = buildConfig;
213+
158214
}

0 commit comments

Comments
 (0)