-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
132 lines (130 loc) · 4.66 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
const path = require("path");
const { CleanWebpackPlugin } = require("clean-webpack-plugin");
const HTMLWebpackPlugin = require("html-webpack-plugin");
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
//const postcssNormalize = require("postcss-normalize");
module.exports = {
mode: "development",
entry: [
"@babel/polyfill",
"./src/index.jsx",
],
output: {
path: path.resolve(__dirname, "dist"),
filename: "[name].[fullhash].js",
//publicPath: "/", // now in Webpack 5 determined automatically if possible
},
target: "web", // ! Live reloading bug fix. (for Webpack 5)
// target: ["web", "es2020"], not working
devtool: 'eval', // compilation x2 faster
cache: { type: "filesystem"},
devServer: {
port: 3000,
open: 'Google Chrome',
contentBase: path.resolve(__dirname, "dist"),
//contentBase: path.resolve(__dirname, "dist"),
contentBase: "./dist",
//publicPath: "/dist",
hot: true,
//open: true
},
resolve: {
extensions: [".js", ".jsx"],
fallback: { "path": false }
},
plugins: [
new HTMLWebpackPlugin({ template: "./src/index.html" }),
// new ReactRefreshWebpackPlugin({
// overlay: {
// entry: webpackDevClientEntry,
// // The expected exports are slightly different from what the overlay exports,
// // so an interop is included here to enable feedback on module-level errors.
// module: reactRefreshOverlayEntry,
// // Since we ship a custom dev client and overlay integration,
// // the bundled socket handling logic can be eliminated.
// sockIntegration: false,
// },
// }),
new CleanWebpackPlugin(),
new MiniCssExtractPlugin(),
],
module: {
rules: [
{
test: /\.(css|scss)$/,
use: [
{
loader: MiniCssExtractPlugin.loader,
options: { publicPath: "../../" },
},
"css-loader",
// {
// loader: require.resolve('postcss-loader'),
// // loader: "postcss-loader",
// options: {
// ident: 'postcss',
// postcssOptions: {
// plugins:
// [
// "postcss-preset-env",
// "autoprefixer",
// postcssNormalize(),
// ],
// },
// },
// },
"sass-loader",
],
},
{
test: /\.(jpg|jpeg|png|svg|gif)$/,
use: ["file-loader"],
},
{
test: /\.m?js$/,
exclude: /node_modules/,
use: {
loader: "babel-loader",
options: {
presets: ["@babel/preset-env"],
},
},
},
// {
// test: /\.m?jsx$/,
// exclude: /node_modules/,
// use: {
// loader: "babel-loader",
// options: {
// presets: [
// ['@babel/preset-env', { "debug": true }],
// '@babel/preset-react'
// ],
// plugins: ['react-refresh/babel']
// },
// exclude: path.join(__dirname, 'node_modules')
// }
// },
{
test: /\.jsx?$/,
loader: "babel-loader",
options: {
presets: [
[
"@babel/preset-env",
{
// targets: { browsers: ["last 2 chrome versions"] },
useBuiltIns: "usage",
corejs: { version: 3, proposals: true },
debug: true,
},
],
"@babel/preset-react",
],
//plugins: ["react-refresh/babel"], // вешало всё
},
exclude: /node_modules/,
},
],
},
};