-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.common.js
77 lines (76 loc) · 2.47 KB
/
webpack.common.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
const path = require("path");
const webpack = require("webpack");
module.exports = {
module: {
rules: [
{
/** Load & Transpile ES6 syntax for .js and .jsx files */
test: /\.(js|jsx)$/i, // Regular expression
exclude: /(node_modules)/,
loader: "babel-loader",
options: {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current",
},
},
],
"@babel/preset-react",
],
"plugins": [
"@babel/plugin-transform-runtime",
[
"babel-plugin-styled-components",
{ "displayName": true },
],
"@babel/plugin-proposal-class-properties",
],
},
},
{
/** Load & Compile SCSS and SASS files to CSS */
test: /\.s(a|c)ss$/i, // "/i => case insensitive"
use: [
// Creates `style` nodes from JS strings
"style-loader",
// Translates CSS into CommonJS
"css-loader",
// Compiles Sass to CSS
"sass-loader",
],
},
{
/** Load & Transpile CSS */
test: /\.css$/i,
use: [
"style-loader",
"css-loader",
],
},
{
/** Load Files */
test: /\.(png|jpg|jfif|gif|svg|eot|ttf|woff|woff2|json|xml|ico)$/i,
loader: "file-loader",
options: {
name: "[path][name].[ext]",
publicPath: "/",
},
},
],
},
resolve: {
extensions: [
"*",
".js",
".jsx",
],
alias: {
/** Directory alias to shorten import directories */
".../assets": path.resolve(__dirname, "./public/assets"),
".../images": path.resolve(__dirname, "./public/assets/images"),
},
},
};