Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vincent-the-gamer/vincent
My personal website.
https://github.com/vincent-the-gamer/vincent
Last synced: 5 days ago
JSON representation
My personal website.
- Host: GitHub
- URL: https://github.com/vincent-the-gamer/vincent
- Owner: Vincent-the-gamer
- License: mit
- Created: 2023-12-21T15:18:12.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-10-21T06:40:45.000Z (25 days ago)
- Last Synced: 2024-10-21T09:36:51.112Z (25 days ago)
- Language: Markdown
- Homepage: https://blog.vince-g.xyz
- Size: 41.1 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
vincent
My personal website.
# Visit
[https://blog.vince-g.xyz/](https://blog.vince-g.xyz/)
# Router Mode
## Web History + SSG (Default)
```typescript
export const createApp = ViteSSG(
App,
{
routes,
},
({ router, app, isClient }) => {
....
},
)
```then
```shell
pnpm run build
```## Web Hash History + SPA
```typescript
export const createApp = ViteSSG(
App,
{
routes,
history: createWebHashHistory()
},
({ router, app, isClient }) => {
....
},
)
```then
```shell
pnpm run spa-build
```# License
Code is licensed under [MIT](./LICENSE).
Words and images are licensed under [CC BY-NC-SA 4.0](https://creativecommons.org/licenses/by-nc-sa/4.0/).