-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
63 lines (59 loc) · 1.38 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
52
53
54
55
56
57
58
59
60
61
62
63
var HtmlWebpackPlugin = require('html-webpack-plugin');
var pathResolve = require('path').resolve;
var webpack = require('webpack');
var urlLoader = require("url-loader");
const config = {
context: pathResolve('src'),
entry: './js/main.js',
output: {
path: pathResolve(''),
filename: 'dist/bundle.js',
publicPath: ''
},
module:{
rules: [
{
test: /\.js$/,
exclude: /node_modules/,
use: {
loader: 'babel-loader'
}
},
{
test: /\.css$/,
use: ['style-loader', 'css-loader']
},
{
test: /\.scss$/,
use: [ 'style-loader', 'css-loader', 'sass-loader']
},
{
test: /\.(png|mp4)$/,
use: 'file-loader?name=[hash:6].[ext]&outputPath=dist/images/'
},
{
test: /\.(woff(2)?|ttf|eot|svg)(\?v=\d+\.\d+\.\d+)?$/,
loader: 'url-loader?limit=10000&outputPath=dist/fontawesome/',
}
]
},
devServer:{
contentBase: __dirname + "/dist",
inline: true,
stats: 'errors-only',
open: true,
openPage: '',
host: "192.168.0.6"
},
plugins: [
new HtmlWebpackPlugin({
template: './index.template.html'
}),
new webpack.ProvidePlugin({
$: "jquery",
jQuery: "jquery",
"window.jQuery": "jquery",
})
]
};
module.exports = config