-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.production.config.js
96 lines (92 loc) · 3 KB
/
webpack.production.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
const path = require('path');
const webpack = require('webpack');
const CopyWebpackPlugin = require('copy-webpack-plugin');
const node_modules_dir = path.resolve(__dirname, 'node_modules');
// const ExtractTextPlugin = require('extract-text-webpack-plugin');
const cheerio = require('cheerio');
const fs = require('fs');
// var ExtractVendor = new ExtractTextPlugin('styles/vendor.css');
// const ExtractMain = new ExtractTextPlugin('styles/main.css');
const config = {
entry: {
app: path.resolve(__dirname, 'src/scripts/main.js'),
vendor: [
'jquery',
path.resolve(__dirname, 'src/scripts/widgets/plugin.js'),
'bootstrap/dist/js/bootstrap.js',
path.resolve(__dirname, 'src/scripts/metronic/scripts.bundle.js')
]
},
output: {
path: path.resolve(__dirname, 'dist'),
filename: 'scripts/bundle.[hash].js'
},
resolve: {
extensions: ['.js', '.jsx', '.scss']
},
module: {
rules: [
{
test: /\.jsx?$/,
exclude: [node_modules_dir],
use: ['babel-loader'],
include: [path.join(__dirname, 'src')]
},
{
test: /\.scss$/,
use:[
'style-loader',
'css-loader',
'postcss-loader',
'sass-loader',
],
},
{
test: /\.css$/,
use:[
'style-loader',
'css-loader',
'postcss-loader',
]
},
{
test: /\.(png|jpg|gif)$/,
loader: 'url-loader?limit=1&name=/images/[name].[ext]'
},
{
test: /\.(woff|svg|eot|ttf)\??.*$/,
loader: 'url-loader?limit=1&name=/fonts/[name].[ext]'
}
]
},
plugins: [
new webpack.DefinePlugin({
'process.env.NODE_ENV': '"production"'
}),
new webpack.optimize.CommonsChunkPlugin({name:'vendor',filename:'/scripts/vendor.js'}),
new webpack.ProvidePlugin({
$: "jquery",
jQuery: "jquery",
"window.jQuery": "jquery",
Popper: ['popper.js', 'default'],
}),
new CopyWebpackPlugin([{
from: path.resolve(__dirname, "src/index.html"),
to: path.resolve(__dirname, "dist/index.html")
}]),
// ExtractVendor,
// ExtractMain,
function() {
this.plugin('done', stats => {
fs.readFile('./dist/index.html', (err, data) => {
const $ = cheerio.load(data.toString());
$('#bundle').attr('src', '/scripts/bundle.'+stats.hash+'.js');
fs.writeFile('./dist/index.html', $.html(), err => {
!err && console.log('Set has success: '+stats.hash)
})
})
})
}
]
};
module.exports = config;