Skip to content

Commit

Permalink
📝 add repo references to readme
Browse files Browse the repository at this point in the history
  • Loading branch information
richard-unterberg committed Jul 20, 2024
1 parent 778321d commit f6fcb57
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ plugins: [
],
```
See the full ``vite.config.ts`` here (TODO: link to repo)
See the full [vite.config.ts](https://github.com/richard-unterberg/statetrain/blob/master/vite.config.ts) here
SSR users: [See this implementation guide](https://vike.dev/add)
Expand All @@ -211,7 +211,7 @@ See [all icons](https://lucide.dev/icons/)
This application uses [uno.css](https://unocss.dev/) for more scalability and custom presets. The [tailwind-preset](https://unocss.dev/presets/wind) is active by default, which means you can rely on the classic Tailwind CSS syntax.
To reduce "className-cluttering," we use [tailwind-styled-components](https://github.com/MathiasGilson/tailwind-styled-component).
To reduce "className-cluttering" I used [tailwind-styled-components](https://github.com/MathiasGilson/tailwind-styled-component).
For example, a simple button:
Expand Down Expand Up @@ -245,7 +245,7 @@ export default tw.div<LayoutTwProps>`
`
```
See the full uno.config.ts (TODO: link to repo)
See the full [uno.config.ts](https://github.com/richard-unterberg/statetrain/blob/master/uno.config.ts)
## <a id="aliases"></a>Aliases
Expand All @@ -259,7 +259,7 @@ import Something from '#components/Something'
We must set and keep it in sync for vite (``vite.config.ts``) and your IDE (``tsconfig.json``)
``vite.config.ts``:
[``vite.config.ts``](https://github.com/richard-unterberg/statetrain/blob/master/vite.config.ts):
```ts
...viteConfig,
resolve: {
Expand All @@ -272,7 +272,7 @@ resolve: {
},
```
``tsconfig.json``:
[``tsconfig.json``](https://github.com/richard-unterberg/statetrain/blob/master/tsconfig.json):
```json
...tsConfig,
"paths": {
Expand Down

0 comments on commit f6fcb57

Please sign in to comment.