Skip to content

Commit

Permalink
docs: Update build-from-scratch.md (#3197)
Browse files Browse the repository at this point in the history
  • Loading branch information
Swizec authored Jan 20, 2025
1 parent d8d6bcd commit 27f3c4e
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions docs/framework/react/start/build-from-scratch.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,17 @@ To tell Vinxi that it should start TanStack Start's minimal behavior, we need to
```typescript
// app.config.ts
import { defineConfig } from '@tanstack/start/config'

export default defineConfig({})
import tsConfigPaths from "vite-tsconfig-paths";

export default defineConfig({
vite: {
plugins: [
tsConfigPaths({
projects: ["./tsconfig.json"],
}),
],
},
});
```

## Add the Basic Templating
Expand Down

0 comments on commit 27f3c4e

Please sign in to comment.