forked from ChristofferMarcussen/SVV-HC-reg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
52 lines (51 loc) · 1.23 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
const WebpackNotifierPlugin = require('webpack-notifier');
const ExtractTextPlugin = require('extract-text-webpack-plugin');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const CopyWebpackPlugin = require('copy-webpack-plugin');
module.exports = {
entry: [
'./app/public/index.js',
'./app/public/style/main.less',
],
output: {
path: './app/public/dist',
filename: '/app.bundle.js',
},
module: {
loaders: [
{
test: [/\.js$/, /\.jsx$/],
exclude: /node_modules/,
loader: 'babel-loader',
query: {
presets: ['es2015', 'react'],
},
},
{
test: /\.less$/,
loader: ExtractTextPlugin.extract('style-loader', 'css-loader?-url!autoprefixer?browsers=last 2 version!less-loader'),
},
{
test: /\.jpg$/,
loader: 'file-loader',
},
],
},
plugins: [
new WebpackNotifierPlugin(),
new HtmlWebpackPlugin({
template: 'app/public/index.html',
inject: 'body',
filename: 'index.html',
}),
new CopyWebpackPlugin([
{
from: 'app/public/img/',
to: 'img/',
},
]),
new ExtractTextPlugin('/main.bundle.css', {
allChunks: true,
}),
],
};