-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwebpack.config.js
51 lines (49 loc) · 1.4 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
var path = require('path');
var webpack = require('webpack');
var HtmlWebpackPlugin = require('html-webpack-plugin');
var ExtractTextPlugin = require('extract-text-webpack-plugin');
var CopyWebpackPlugin = require('copy-webpack-plugin');
var webpackConfig = {
devServer: {
outputPath: './',
port: 8999
},
entry: {
index: ['./js/index']
},
output: {
path: path.resolve(__dirname, 'dest'),
filename: 'js/[hash:8].[name].js',
},
//devtool: 'source-map',
module: {
loaders: [{
test: /\.js?$/,
exclude: /node_modules/,
loader: 'babel-loader?presets[]=es2015'
}, {
test: /\.css$/,
loader: ExtractTextPlugin.extract('style-loader', 'css-loader')
},
{
test: /\.less$/,
loader: ExtractTextPlugin.extract('css!less')
}]
},
plugins: [
new ExtractTextPlugin('css/[contenthash:8].[name].css', {
//allChunks: true
}),
new HtmlWebpackPlugin({
inject: 'body',
chunks: ['index'],
filename: 'index.html',
template: 'index.html',
}),
new CopyWebpackPlugin([
{ from: 'js/jquery.min.js', to: 'js/jquery.min.js' },
{ from: 'js/router.min.js', to: 'js/router.min.js' }
]),
]
}
module.exports = webpackConfig;