-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
98 lines (94 loc) · 2.72 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
const path = require('path');
const webpack = require('webpack');
const autoprefixer = require('autoprefixer');
const precss = require('precss');
const ExtractTextPlugin = require('extract-text-webpack-plugin');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const copy = require('copy-webpack-plugin');
const srcDir = path.resolve(__dirname, './src');
const distDir = path.resolve(__dirname, './docs');
const staticDir = path.resolve(__dirname, './static');
const commonsPlugin = new webpack.optimize.CommonsChunkPlugin({
name: 'commons',
filename: 'commons.js'
});
const hotReplacement = new webpack.HotModuleReplacementPlugin();
const extract = new ExtractTextPlugin('style.css');
const htmlPlugin = new HtmlWebpackPlugin({
title: 'Geeku',
template: path.resolve(__dirname, './index.html'),
inject: 'body',
hash: true,
minify: {
collapseWhitespace: true
}
});
const postcss = new webpack.LoaderOptionsPlugin({
options: {
postcss: function () {
return [
autoprefixer({
remove: false,
browsers: ['ie >= 9', '> 1% in CN'],
}),
precss
];
},
}
});
const copyStatic = new copy([
{
from: './static',
to: './static'
}
]);
module.exports = {
entry: {
'src': srcDir,
},
output: {
path: distDir,
// publicPath: 'static',
filename: 'index.js',
},
module: {
loaders: [
{
test: /template\.html$/,
use: ['html-loader?root=./static/']
},
{
test: /\.woff$|\.ttf$|\.eot$|\.wav$|\.mp3$/,
use: ['file-loader']
},
{
test: /\.jpe?g$|\.gif$|\.png$|\.svg$/,
use: ['file-loader?limit=8192&name=static/[name].[ext]']
},
{
test: /\.js$/,
loaders: ['babel-loader?presets[]=es2015,presets[]=stage-0&cacheDirectory'],
exclude: /node_modules/
},
{
test: /\.css$|\.scss$/,
use: ExtractTextPlugin.extract({
fallback: "style-loader",
use: ["css-loader?minimize", 'sass-loader']
})
}
]
},
plugins: [ commonsPlugin, extract, htmlPlugin, postcss, copyStatic, new webpack.DefinePlugin({
'process.env.NODE_ENV': JSON.stringify(process.env.NODE_ENV || 'development')
}) ],
// watch: true,
devServer: {
historyApiFallback: true,
hot: false,
inline: true,
progress: true,
port: 2333
},
devtool: '#source-map',
}