Sign in
concept-collection
/
stan-remote-sampling
Code
Commits
Issues
0
Pull requests
0
Actions
Branches
1
Tags
0
Site
main
Branches
main
stan-remote-sampling
/
vite.config.ts
11 lines · 253 B
Copy
Copied
Blame
History
Raw
1
import
react
from
"@vitejs/plugin-react"
;
2
import
{ defineConfig }
from
"vite"
;
3
4
export
default
defineConfig
(
() =>
({
5
plugins
: [
react
()],
6
// Relative base, so the build works wherever it is mounted
7
base
:
"./"
,
8
server
: {
9
port
:
3000
,
10
},
11
}));