-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebpack.config.base.babel.js
More file actions
69 lines (68 loc) · 1.66 KB
/
webpack.config.base.babel.js
File metadata and controls
69 lines (68 loc) · 1.66 KB
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
import path from 'path';
import webpack from 'webpack';
export default {
context: __dirname,
entry: {
// Separate bundle for Vendor CSS
vendorcss: path.resolve('./myapp/webpack/js/vendorcss.js'),
// Add all entry points here, aka all apps
base: path.resolve('./myapp/webpack/js/base.js'),
myblog: path.resolve('./myblog/webpack/js/myblog.js'),
},
target: 'web',
output: {
path: path.resolve('./assets/bundles/'),
filename: '[name].js',
},
plugins: [
// 3rd party css
new webpack.optimize.CommonsChunkPlugin({
name: 'vendorcss',
}),
// 3rd party js
new webpack.optimize.CommonsChunkPlugin({
name: 'vendorjs',
minChunks(module) {
// This assumes all vendor imports exist in the node_modules directory
return module.context && module.context.indexOf('node_modules') !== -1;
},
}),
// Separate Webpack manifest file to avoid false positive change detections in js
new webpack.optimize.CommonsChunkPlugin({
name: 'manifest',
}),
],
module: {
rules: [
{
test: /\.(png|jpg|jpeg|gif|svg|woff|woff2|eot|ttf|otf)$/,
use: [
{
loader: 'url-loader',
options:
{
limit: 8192,
name: '[name].[ext]',
},
},
],
},
{
test: /\.js$/,
exclude: /node_modules/,
loader: 'babel-loader', // Do not use "use" here
query: {
presets: ['env'],
},
},
],
},
node: {
console: true,
fs: 'empty',
net: 'empty',
tls: 'empty',
child_process: 'empty',
module: 'empty',
},
};