-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
49 lines (48 loc) · 1.71 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
const path = require('path');
const webpack = require('webpack');
const ExtractTextPlugin = require('extract-text-webpack-plugin');
const bundleOutputDir = './src/main/resources/webroot/dist';
const VertxPlugin = require('webpack-vertx-plugin');
module.exports = (env) => {
const isDevBuild = !(env && env.prod);
return [{
stats: {modules: false},
entry: {'main': './src/main/js/boot.jsx'},
resolve: {extensions: ['.js', '.jsx']},
output: {
path: path.join(__dirname, bundleOutputDir),
filename: '[name].js',
publicPath: 'dist/'
},
module: {
rules: [
{test: /\.jsx?$/, include: /src\/.+\/jsx?/, use: 'babel-loader'},
{
test: /\.css$/,
use: isDevBuild ? ['style-loader', 'css-loader'] : ExtractTextPlugin.extract({use: 'css-loader?minimize'})
},
{test: /\.(png|jpg|jpeg|gif|svg)$/, use: 'url-loader?limit=25000'}
]
},
plugins: [
new webpack.DllReferencePlugin({
context: __dirname,
manifest: require('./src/main/resources/webroot/dist/vendor-manifest.json')
})
].concat(isDevBuild ? [
// Plugins that apply in development builds only
new webpack.SourceMapDevToolPlugin({
filename: '[file].map', // Remove this line if you prefer inline source maps
moduleFilenameTemplate: path.relative(bundleOutputDir, '[resourcePath]') // Point sourcemap entries to the original file locations on disk
}),
new VertxPlugin({
fatJar: 'target/vertx-0.0.1-SNAPSHOT-fat.jar'
})
] : [
// Plugins that apply in production builds only
new webpack.optimize.UglifyJsPlugin(),
new ExtractTextPlugin('site.css'),
new VertxPlugin()
])
}];
};