-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
95 lines (91 loc) · 3.93 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
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
let path = require('path'); // подключение path
let ExtractTextPlugin = require("extract-text-webpack-plugin");
let HtmlWebpackPlugin = require('html-webpack-plugin');
let conf = { // Экпорт объекта с настройками Webpack
entry: {
homePage: './src/entry/index.js'
}, // Точка входа
output: { // Выходные параметры
path: path.resolve(__dirname, 'dist/'), // Директория, куда будет помещаться готовые файлы
filename: '[name].js', // Имя выходного файла
publicPath: '' // Путь для подстановки в браузер
},
devServer: { // Использование DevServer
overlay: true // Показывать слой с отладной
},
module: { // Модули Webpack
rules: [
{
test: /\.js$/, // Переработка кода babel
use: ["babel-loader"] // use:[] в квадратных скобказ лодеры
},
{
test: /\.less$/, // переработка less кода
use: ExtractTextPlugin.extract({ // использование ExtractTextPlugin
fallback: "style-loader",
use: [{
loader: 'css-loader', options: {
sourceMap: true
}
}, {
loader: 'less-loader', options: {
sourceMap: true
}
}]
})
},
{
test: /\.html$/,
use: ['html-loader']
},
{
test: /\.(jpg|png)$/,
use: [
{
loader: 'file-loader',
options: {
name: '[name].[ext]',
outputPath: 'img/',
publicPath: 'img/'
}
}
]
},
{
test: /\.(ttf|eot|woff|woff2)$/,
use: [
{
loader: 'file-loader',
options: {
name: '[name].[ext]',
outputPath: 'font/',
publicPath: 'font/'
}
}
]
}
]
},
plugins: [ // Плагины для Webpack
new ExtractTextPlugin("style.css"), // Новый плагин с настройками
new HtmlWebpackPlugin({ // плагин для работы с html
filename: 'index.html', // Имя выходного файла
template: 'src/html/index.html' // Имя и путь входного файла
}),
new HtmlWebpackPlugin({ // плагин для работы с html
filename: 'services.html', // Имя выходного файла
template: 'src/html/services.html' // Имя и путь входного файла
}),
new HtmlWebpackPlugin({ // плагин для работы с html
filename: 'my.html', // Имя выходного файла
template: 'src/html/my.html' // Имя и путь входного файла
})
]
};
module.exports = (env, options) => { // module.export может быть функцией, которая принимает env и options
let production = options.mode === 'production'; // смотрим, какой production это или нет
conf.devtool = production
? false // для продакшн нет
: 'eval-source-map'; // для разработка есть карта сайта
return conf;
};