Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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/).