-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
33 lines (32 loc) · 1011 Bytes
/
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
var path = require('path');
module.exports = {
devtool: 'sourcemaps',
cache: true,
debug: true,
entry: {
'./src/main/resources/static/built/bundle': './src/main/js/app.js',
//needed to update the target folder for hot reloading
'./target/classes/static/built/bundle': './src/main/js/app.js'
},
output: {
path: __dirname,
//this will be ./src/main/resources/static/built/bundle.js and ./target/classes/static/built/bundle.js directories
filename: '[name].js'
},
module: {
loaders: [
{
//identifies which file(s) should be transformed
test: path.join(__dirname, '.'),
exclude: /(node_modules)/,
//transform it using babel before adding this file to the bundle
loader: 'babel',
query: {
cacheDirectory: true,
presets: ['es2015', 'react']
}
},
{ test: /\.json$/, loader: 'json' }
]
}
};