This repository has been archived by the owner on Mar 14, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
71 lines (68 loc) · 1.89 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
const path = require('path');
const ASSETS_PATH = path.join(__dirname, 'static');
const JS_PATH = path.resolve('js');
const CSS_PATH = path.resolve('postcss');
const ExtractTextPlugin = require('extract-text-webpack-plugin');
const DashboardPlugin = require('webpack-dashboard/plugin');
const Webpack = require('webpack');
const extractCSS = new ExtractTextPlugin({
filename: '[name].css',
disable: false
});
const config = {
mode: 'production',
entry: {
main: path.join(JS_PATH, 'main.js')
},
output: {
path: path.resolve(__dirname, ASSETS_PATH),
filename: '[name].js'
},
module: {
rules: [
{
test: /\.js$/,
exclude: /(node_modules|bower_components)/,
use: [
{
loader: 'babel-loader'
}
]
},
{
test: /\.css$/,
use: extractCSS.extract({
use: [
{
loader: 'css-loader' // translates CSS into CommonJS
},
{
loader: 'postcss-loader' // compiles Sass to CSS
}
],
fallback: 'style-loader'
})
},
{
test: /\.(png|jpg|gif|woff(2)?|eot|ttf|svg)$/,
use: [
{
loader: 'file-loader' // creates style nodes from JS strings
}
]
}
]
},
plugins: [
extractCSS,
new DashboardPlugin()
],
resolve: {
modules: [
'node_modules',
path.resolve(__dirname, JS_PATH),
path.resolve(__dirname, CSS_PATH)
]
}
};
module.exports = config;