-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
57 lines (55 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
require("@babel/register");
const path = require("path");
module.exports = {
entry: "./src/main.jsx",
output: {
path: path.join(__dirname, "/public/dist/"),
publicPath: "/public/dist/",
filename: "bundle.js",
},
module: {
rules: [
{
test: /.jsx?$/,
exclude: /node_modules/,
use: ["babel-loader"],
},
{ test: /\.(png|jpg)$/, loader: "url-loader?limit=8192" },
{
// look for .css or .scss files
test: /\.(css)$/,
// in the `src` directory
// include: [path.resolve(paths.appSrc)],
use: [
{
loader: "style-loader",
},
{
loader: "css-loader",
options: {
// discardDuplicates: true,
// importLoaders: 1,
// This enables local scoped CSS based in CSS Modules spec
modules: false,
// generates a unique name for each class (e.g. app__app___2x3cr)
// localIdentName: '[name]__[local]___[hash:base64:5]',
},
},
// {
// loader: "sass-loader",
// options: {
// sourceMap: true
// }
// }
],
},
],
},
mode: "development",
context: __dirname,
devtool: "source-map",
resolve: {
extensions: [".js", ".jsx", ".css"],
},
plugins: [],
};