-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.prod.js
82 lines (72 loc) · 1.73 KB
/
webpack.config.prod.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
var path = require('path');
var webpack = require('webpack');
var HtmlWebpackPlugin = require('html-webpack-plugin');
var ExtractTextPlugin = require('extract-text-webpack-plugin');
var CleanWebpackPlugin = require('clean-webpack-plugin');
module.exports = {
entry: {
zepto: ['n-zepto'],
['zepto.slide']: path.resolve(__dirname, './src/res/js/zepto.slide.js')
},
output: {
path: path.resolve(__dirname, './demo'),
filename: '[name].min.js'
},
module: {
loaders: [
{
test: /\.json$/,
loader: 'json-loader'
},
{
test: /\.css$/,
loader: 'style-loader!css-loader'
},
{
test: /\.less$/i,
loader: ExtractTextPlugin.extract({
fallback: 'style-loader',
use: ['css-loader', 'less-loader'],
publicPath: '../'
})
},
{
test: /\.js$/,
exclude: /node_modules/,
loader: 'babel-loader',
query: {
presets: ['es2015', 'react']
}
},
{
test: /\.(png|jpg|gif|eot|svg|ttf|woff)$/,
loader: 'url-loader?limit=8192&name=src/res/images/[name].[ext]?[hash:8]'
},
{
test: /\.html$/,
loader: 'html-loader?minimize=false'
}
]
},
plugins: [
new HtmlWebpackPlugin({
filename: './demo.html',
template: __dirname + '/src/demo.html',
inject: 'head'
}),
new HtmlWebpackPlugin({
filename: './fullpage.html',
template: __dirname + '/src/fullpage.html',
inject: 'head'
}),
new ExtractTextPlugin('zepto.slide.min.css'),
new webpack.optimize.CommonsChunkPlugin({
name: ['zepto']
}),
new CleanWebpackPlugin(
[
'demo'
]
)
]
};