FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
patternfly-java/showcase/vite.config.js at main · patternfly-java/patternfly-java · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
patternfly-java
/
patternfly-java
Public
Notifications
You must be signed in to change notification settings
Fork
5
Star
34
Code
Issues
39
Pull requests
2
Discussions
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
patternfly-java
/
showcase
/
vite.config.js
Copy path
More file actions
More file actions
Latest commit
History
History
History
103 lines (96 loc) · 3.08 KB
Breadcrumbs
patternfly-java
/
showcase
/
vite.config.js
Copy path
File metadata and controls
103 lines (96 loc) · 3.08 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
/*
* Copyright 2023 Red Hat
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import
{
defineConfig
}
from
'vite'
;
import
{
resolve
}
from
'path'
;
import
{
existsSync
,
createReadStream
}
from
'fs'
;
import
{
execSync
}
from
'child_process'
;
const
j2clDir
=
resolve
(
import
.
meta
.
dirname
,
'target/showcase'
)
;
const
markdownDir
=
resolve
(
import
.
meta
.
dirname
,
'markdown'
)
;
function
serveJ2cl
(
)
{
return
{
name
:
'serve-j2cl'
,
configureServer
(
server
)
{
server
.
middlewares
.
use
(
(
req
,
res
,
next
)
=>
{
if
(
req
.
url
.
match
(
/
s
h
o
w
c
a
s
e
\.
j
s
$
|
\.
b
u
n
d
l
e
\.
j
s
$
/
)
||
req
.
url
.
includes
(
'/sources/'
)
)
{
const
filePath
=
resolve
(
j2clDir
,
req
.
url
.
replace
(
/
^
\/
/
,
''
)
)
;
if
(
existsSync
(
filePath
)
)
{
res
.
setHeader
(
'Content-Type'
,
'application/javascript'
)
;
createReadStream
(
filePath
)
.
pipe
(
res
)
;
return
;
}
}
next
(
)
;
}
)
;
}
}
;
}
function
markdownPlugin
(
)
{
let
reprocessing
=
false
;
function
reprocess
(
)
{
if
(
reprocessing
)
return
;
reprocessing
=
true
;
try
{
execSync
(
'node markdown.mjs'
,
{
stdio
:
'inherit'
}
)
;
}
finally
{
reprocessing
=
false
;
}
}
function
isMarkdownSource
(
file
)
{
return
file
.
startsWith
(
markdownDir
)
&&
(
file
.
endsWith
(
'.md'
)
||
file
.
endsWith
(
'.yaml'
)
)
;
}
return
{
name
:
'markdown'
,
buildStart
(
)
{
reprocess
(
)
;
}
,
configureServer
(
server
)
{
server
.
watcher
.
add
(
markdownDir
)
;
for
(
const
event
of
[
'change'
,
'add'
,
'unlink'
]
)
{
server
.
watcher
.
on
(
event
,
(
file
)
=>
{
if
(
isMarkdownSource
(
file
)
)
{
reprocess
(
)
;
}
}
)
;
}
}
}
;
}
export
default
defineConfig
(
{
root
:
'src/web'
,
plugins
:
[
serveJ2cl
(
)
,
markdownPlugin
(
)
]
,
server
:
{
port
:
1234
,
open
:
'/'
,
fs
:
{
allow
:
[
resolve
(
import
.
meta
.
dirname
,
'..'
)
]
}
,
watch
:
{
ignored
:
[
'!**/target/showcase/**'
]
}
}
,
build
:
{
outDir
:
resolve
(
import
.
meta
.
dirname
,
'target/showcase'
)
,
emptyOutDir
:
false
,
cssMinify
:
'esbuild'
,
chunkSizeWarningLimit
:
2200
,
rollupOptions
:
{
input
:
{
index
:
resolve
(
import
.
meta
.
dirname
,
'src/web/index.html'
)
,
'404'
:
resolve
(
import
.
meta
.
dirname
,
'src/web/404.html'
)
}
}
}
}
)
;
Back
|
FazBrowse Home
|
New Git URL