Sign in
concept-collection
/
mdshare
Code
Commits
Issues
0
Pull requests
0
Actions
Branches
1
Tags
0
Site
main
Branches
main
mdshare
/
vite.config.ts
9 lines · 269 B
Copy
Copied
Blame
History
Raw
1
import
{ defineConfig }
from
'vite'
2
import
react
from
'@vitejs/plugin-react'
3
4
// Relative base so the built site works from any path (GitHub Pages project
5
// site, a subdirectory, or the filesystem).
6
export
default
defineConfig
({
7
base
:
'./'
,
8
plugins
: [
react
()],
9
})