FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
patternfly-react-seed/webpack.common.js at main · devanomaly/patternfly-react-seed · GitHub
devanomaly
/
patternfly-react-seed
Public
forked from
patternfly/patternfly-react-seed
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
patternfly-react-seed
/
webpack.common.js
Copy path
More file actions
More file actions
Latest commit
History
History
History
140 lines (139 loc) · 4.69 KB
Breadcrumbs
patternfly-react-seed
/
webpack.common.js
Copy path
File metadata and controls
140 lines (139 loc) · 4.69 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
const
path
=
require
(
'path'
)
;
const
HtmlWebpackPlugin
=
require
(
'html-webpack-plugin'
)
;
const
CopyPlugin
=
require
(
'copy-webpack-plugin'
)
;
const
TsconfigPathsPlugin
=
require
(
'tsconfig-paths-webpack-plugin'
)
;
const
Dotenv
=
require
(
'dotenv-webpack'
)
;
const
BG_IMAGES_DIRNAME
=
'bgimages'
;
const
ASSET_PATH
=
process
.
env
.
ASSET_PATH
||
'/'
;
module
.
exports
=
env
=>
{
return
{
module
:
{
rules
:
[
{
test
:
/
\.
(
t
s
x
|
t
s
|
j
s
x
)
?
$
/
,
use
:
[
{
loader
:
'ts-loader'
,
options
:
{
transpileOnly
:
true
,
experimentalWatchApi
:
true
,
}
}
]
}
,
{
test
:
/
\.
(
s
v
g
|
t
t
f
|
e
o
t
|
w
o
f
f
|
w
o
f
f
2
)
$
/
,
// only process modules with this loader
// if they live under a 'fonts' or 'pficon' directory
include
:
[
path
.
resolve
(
__dirname
,
'node_modules/patternfly/dist/fonts'
)
,
path
.
resolve
(
__dirname
,
'node_modules/@patternfly/react-core/dist/styles/assets/fonts'
)
,
path
.
resolve
(
__dirname
,
'node_modules/@patternfly/react-core/dist/styles/assets/pficon'
)
,
path
.
resolve
(
__dirname
,
'node_modules/@patternfly/patternfly/assets/fonts'
)
,
path
.
resolve
(
__dirname
,
'node_modules/@patternfly/patternfly/assets/pficon'
)
]
,
use
:
{
loader
:
'file-loader'
,
options
:
{
// Limit at 50k. larger files emited into separate files
limit
:
5000
,
outputPath
:
'fonts'
,
name
:
'[name].[ext]'
,
}
}
}
,
{
test
:
/
\.
s
v
g
$
/
,
include
:
input
=>
input
.
indexOf
(
'background-filter.svg'
)
>
1
,
use
:
[
{
loader
:
'url-loader'
,
options
:
{
limit
:
5000
,
outputPath
:
'svgs'
,
name
:
'[name].[ext]'
,
}
}
]
}
,
{
test
:
/
\.
s
v
g
$
/
,
// only process SVG modules with this loader if they live under a 'bgimages' directory
// this is primarily useful when applying a CSS background using an SVG
include
:
input
=>
input
.
indexOf
(
BG_IMAGES_DIRNAME
)
>
-
1
,
use
:
{
loader
:
'svg-url-loader'
,
options
:
{
}
}
}
,
{
test
:
/
\.
s
v
g
$
/
,
// only process SVG modules with this loader when they don't live under a 'bgimages',
// 'fonts', or 'pficon' directory, those are handled with other loaders
include
:
input
=>
(
(
input
.
indexOf
(
BG_IMAGES_DIRNAME
)
===
-
1
)
&&
(
input
.
indexOf
(
'fonts'
)
===
-
1
)
&&
(
input
.
indexOf
(
'background-filter'
)
===
-
1
)
&&
(
input
.
indexOf
(
'pficon'
)
===
-
1
)
)
,
use
:
{
loader
:
'raw-loader'
,
options
:
{
}
}
}
,
{
test
:
/
\.
(
j
p
g
|
j
p
e
g
|
p
n
g
|
g
i
f
)
$
/
i
,
include
:
[
path
.
resolve
(
__dirname
,
'src'
)
,
path
.
resolve
(
__dirname
,
'node_modules/patternfly'
)
,
path
.
resolve
(
__dirname
,
'node_modules/@patternfly/patternfly/assets/images'
)
,
path
.
resolve
(
__dirname
,
'node_modules/@patternfly/react-styles/css/assets/images'
)
,
path
.
resolve
(
__dirname
,
'node_modules/@patternfly/react-core/dist/styles/assets/images'
)
,
path
.
resolve
(
__dirname
,
'node_modules/@patternfly/react-core/node_modules/@patternfly/react-styles/css/assets/images'
)
,
path
.
resolve
(
__dirname
,
'node_modules/@patternfly/react-table/node_modules/@patternfly/react-styles/css/assets/images'
)
,
path
.
resolve
(
__dirname
,
'node_modules/@patternfly/react-inline-edit-extension/node_modules/@patternfly/react-styles/css/assets/images'
)
]
,
use
:
[
{
loader
:
'url-loader'
,
options
:
{
limit
:
5000
,
outputPath
:
'images'
,
name
:
'[name].[ext]'
,
}
}
]
}
]
}
,
output
:
{
filename
:
'[name].bundle.js'
,
path
:
path
.
resolve
(
__dirname
,
'dist'
)
,
publicPath
:
ASSET_PATH
}
,
plugins
:
[
new
HtmlWebpackPlugin
(
{
template
:
path
.
resolve
(
__dirname
,
'src'
,
'index.html'
)
}
)
,
new
Dotenv
(
{
systemvars
:
true
,
silent
:
true
}
)
,
new
CopyPlugin
(
{
patterns
:
[
{
from
:
'./src/favicon.png'
,
to
:
'images'
}
,
]
}
)
]
,
resolve
:
{
extensions
:
[
'.js'
,
'.ts'
,
'.tsx'
,
'.jsx'
]
,
plugins
:
[
new
TsconfigPathsPlugin
(
{
configFile
:
path
.
resolve
(
__dirname
,
'./tsconfig.json'
)
}
)
]
,
symlinks
:
false
,
cacheWithContext
:
false
}
}
}
;
Back
|
FazBrowse Home
|
New Git URL