-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.dev.conf.js
96 lines (93 loc) · 2.8 KB
/
webpack.dev.conf.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
/**
* Created by tangshanghai on 2016/12/26.
*/
var path = require('path');
var webpack = require('webpack');
// const config = require('../config.js');
// const codeDir = "src";
// const webpackOutputPath = path.resolve(codeDir, 'dist/simple_entry_hot_replace');
// const buildPath = path.resolve(config.root,webpackOutputPath);
const HtmlWebpackPlugin = require('html-webpack-plugin');
module.exports = {
entry: {
app:"./src/index.js",
//vendor:["./src/lib/flv.js","./src/lib/hls.min.js"]
},
output: {
path: path.resolve(__dirname +'/assets'),
filename: "bundle.js",
library: 'ColorPickerTSH',
libraryExport: "default",
libraryTarget: 'umd',
umdNamedDefine: true
},
devServer: {
hot: true,
contentBase: path.join(__dirname, "assets"),
port: 9085,
host:'0.0.0.0'
},
plugins: [
new webpack.HotModuleReplacementPlugin(),
// 防止加载所有地区时刻
// new webpack.IgnorePlugin(/^\.\/locale$/, /moment$/),
// Webpack 2以后内置
// new webpack.optimize.OccurrenceOrderPlugin(),
// 碰到错误warning但是不停止编译
new webpack.NoEmitOnErrorsPlugin(),
// 生成html文件
new HtmlWebpackPlugin({
// 输出文件名字及路径
filename: 'index.html',
template: 'index.html'
}),
// new webpack.NamedModulesPlugin(),
],
module: {
loaders: [
{
test: /\.js|jsx$/,
loader: 'babel-loader',
exclude: /node_modules/,
query: {
presets: ['es2015', "stage-0"]
}
},
{
test: /\.(png|jpg|gif)$/,
loader: 'url-loader?limit=10240'
},
{
test: /\.css$/,
loader: 'style-loader!css-loader'
},
{
test: /\.less$/,
loader: 'style-loader!css-loader!less-loader'
},
{
test: /\.html$/,
loader: 'html-loader'
}
//,
//{
// test:'./src/lib/flv.min.js',
// loader:"imports?flvjs=flvjs,this=>window"
//}
//{
// // 得到jquery模块的绝对路径
// test: '../jquery.js',
// // 将jquery绑定为window.jQuery
// loader: 'expose?window.jQuery'
//}
//{
// test: "./src/lib/flv.js",
// loader: 'expose?window.flvjs'
//},
//{
// test: "./src/lib/hls.min.js",
// loader: 'expose?Hls'
//}
]
}
}