-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
180 lines (166 loc) · 4.18 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
/*
Установка:
npm install
Для разработки:
1. ставим в файле .env переменную APP_ENV=dev
2. даем команду npm run start
http://localhost:3000/
Получаем комфортную среду для отладки (есть карты кода (source maps))
Для продакшена:
1. ставим в файле .env переменную APP_ENV=prod
2. даем команду npm run build
Так же в файле .env есть глобальные переменные, которые можно использовать для запуска определенного кода в development,
если нужны еще переменные, то дописываем их в секцию plugins:webpack.DefinePlugin
Если нужны еще точки входа (кроме index.html и abiut.html), то вписываем их в plugin:
new HtmlWebPackPlugin(....)
Для проведения теста:
npm run test
Для проверки правильности кода:
npm run lint
Для исправления кода:
npm run list:fix
*/
const path = require('path');
const HtmlWebPackPlugin = require('html-webpack-plugin');
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
const UglifyJSPlugin = require('uglifyjs-webpack-plugin');
const webpack = require('webpack');
require('dotenv').config()
const ENV = process.env.APP_ENV;
const isDev = ENV === 'dev';
const isProd = ENV === 'prod';
function setDevTool() {
if (isDev) {
return 'cheap-module-eval-source-map';
} else {
return 'none';
}
}
function setDMode() {
if (isProd) {
return 'production';
} else {
return 'development';
}
}
const config = {
target: "web", //"node" or "web"
entry: './src/app.js',
output: {
path: path.resolve(__dirname, 'dist'),
filename: 'bundle.js'
},
mode: setDMode(),
devtool: setDevTool(),
module: {
rules: [{
test: /\.html$/,
use: [{
loader: 'html-loader',
options: {
minimize: false
}
}]
},
{
test: /\.js$/,
use: 'babel-loader',
exclude: [
/node_modules/
]
},
{
test: /\.css$/,
use: [
'style-loader',
MiniCssExtractPlugin.loader,
{
loader: 'css-loader',
options: {
sourceMap: true
}
}, {
loader: 'sass-loader',
options: {
sourceMap: true
}
}
]
},
{
test: /\.scss$/,
use: [
'style-loader',
MiniCssExtractPlugin.loader,
{
loader: 'css-loader',
options: {
sourceMap: true
}
}, {
loader: 'sass-loader',
options: {
sourceMap: true
}
}
]
},
{
test: /\.(jpg|png|svg|gif)$/,
use: [
{
loader: 'file-loader',
options: {
outputPath: 'images'
}},
{
loader: 'image-webpack-loader',
options: {
mozjpeg: {
processive: true,
quality: 98
}
}
}
]
},
{
test: /\.(woff|woff2|ttf|otf|eot)$/,
use: [{
loader: 'file-loader',
options: {
outputPath: 'fonts'
}
}]
}
]
},
devtool: 'inline-source-map',
plugins: [
new MiniCssExtractPlugin({
filename: 'style.css',
}),
new HtmlWebPackPlugin({
template: './src/screens/canvas/index.html',
filename: './index.html'
}),
new webpack.DefinePlugin({
API_KEY: JSON.stringify(process.env.API_KEY),
APP_ENV: JSON.stringify(process.env.APP_ENV)
})
],
devtool: 'inline-source-map',
devServer: {
contentBase: path.join(__dirname, 'dist'),
compress: true,
port: 3000,
stats: 'errors-only',
clientLogLevel: 'none'
}
}
if (isProd) {
config.plugins.push(
new UglifyJSPlugin(),
);
};
module.exports = config;