-
Notifications
You must be signed in to change notification settings - Fork 5
/
webpack.config.bak.js
40 lines (40 loc) · 1 KB
/
webpack.config.bak.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
let VERSION = '1.3.0';
let webpack = require('webpack');
let path = require('path');
let ExtractTextPlugin = require('extract-text-webpack-plugin');
let css = new ExtractTextPlugin('./[name].css');
module.exports = {
entry: {
'pc': './iui-webpack/entry.pc.js',
'wap': './iui-webpack/entry.wap.js'
},
output: {
path: __dirname + '/dist',
filename: 'iui.[name].' + VERSION + '.js'
},
plugins: [
// new webpack.optimize.UglifyJsPlugin(),
css
],
module: {
rules: [{
test: /\.js$/,
use: {
loader: 'babel-loader',
query: {
presets: ['es2015']
}
}
}, {
test: /\.scss$/,
use: css.extract({ fallbackLoader: 'style-loader', loader: ['css-loader', 'sass-loader'] })
}]
},
devServer: {
contentBase: __dirname,
compress: true,
port: 9000,
inline:true,
host:'0.0.0.0'
}
};