-
Notifications
You must be signed in to change notification settings - Fork 1
/
webpack.config.js
53 lines (50 loc) · 1.15 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
53
const webpack = require('webpack')
const path = require('path')
const ExtractTextPlugin = require("extract-text-webpack-plugin")
const BUILD_DIR = path.resolve(__dirname, 'src/main/resources/static');
const APP_DIR = path.resolve(__dirname, 'client')
const config = {
devtool: 'eval',
entry: APP_DIR + '/components/App.jsx',
output: {
path: BUILD_DIR,
filename: 'js/bundle.js'
},
resolve: {
modules: [
APP_DIR,
'node_modules'
],
extensions: ['.js', '.jsx', '.less']
},
module: {
rules: [
{
test: /\.jsx?/,
loader: 'babel-loader',
exclude: /node_modules/
},
{
test: /\.less$/,
loader: ExtractTextPlugin.extract({
use: ['css-loader', 'less-loader'],
fallback: 'style-loader'
})
},
{
test: /\.(woff|woff2|eot|ttf)$/,
loader: 'url-loader?limit=10000&name=fonts/[name].[ext]'
},
{
test: /\.(png|jpg|svg)$/,
loader: 'url-loader?limit=10000&name=img/[name].[ext]'
}
]
},
plugins: [
new ExtractTextPlugin({
filename: 'css/style.css'
})
]
}
module.exports = config