-
Notifications
You must be signed in to change notification settings - Fork 1
/
webpack.dev.config.js
82 lines (81 loc) · 2.48 KB
/
webpack.dev.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
const path = require('path');
const webpack = require('webpack');
const HtmlWebpackPlugin = require('html-webpack-plugin');
module.exports = {
entry: {
index: './js/index.js'
},
output: {
path: path.resolve(__dirname, 'build'),
filename: '[name].bundle.js',
chunkFilename: '[id].bundle.js',
publicPath: '/'
},
devtool: 'source-map',
module: {
rules: [
{
test: /\.css$/,
use: ['style-loader/useable', 'css-loader', 'postcss-loader']
},
{
test: /\.less$/,
use: ['style-loader', 'css-loader', 'postcss-loader', 'less-loader']
},
{
test: /\.scss$/,
use: [{
loader: "style-loader" // creates style nodes from JS strings
}, {
loader: "css-loader" // translates CSS into CommonJS
}, {
loader: "sass-loader" // compiles Sass to CSS
}]
},
{
test: /\.(js|jsx)$/,
use: [
'react-hot-loader',
{
loader: 'babel-loader',
options: {
presets: ['es2015', 'react']
}
}
],
exclude: /(node_modules)/
},
{
test: /\.(eot|svg|ttf|woff|woff2)\w*/,
use: ['file-loader']
},
{
test: /\.(jpe?g|png|gif|svg)$/i,
loaders: [
'file-loader?name=img/[name].[ext]'
]
}
]
},
resolve: {
modules: [
path.resolve(__dirname, 'node_modules'),
path.resolve(__dirname),
path.resolve(__dirname, 'js', 'fw', 'lib')
]
},
context: __dirname,
plugins: [
new webpack.optimize.CommonsChunkPlugin('common.bundle.js'),
new HtmlWebpackPlugin({
title: 'iService - iPhone, iMac, MacBook, iPod Repairs and Service Center',
description: 'iService is an iPhone, iMac, MacBook, iPod Repairs and Service Center',
username: 'root',
filename: 'index.html',
inject: 'body',
template: 'index.html_vm',
favicon: 'img/glyph.png',
hash: false
})
]
};