Skip to content

Commit

Permalink
Updating docs
Browse files Browse the repository at this point in the history
  • Loading branch information
iamhectorsosa committed Feb 19, 2024
1 parent 4793646 commit d978ebe
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion docs/getting-started/existing-project.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ NEXT_PUBLIC_SUPABASE_ANON_KEY=<SUPANASE_ANON_KEY>

If you do not have these, you may have to run Supabase locally first before development. Read more on [Your Supabase Instance](/getting-started/supabase).

## 4. Add Query, Middleware and API Route to your project
## 4. Add Query, Middleware, API Route and TailwindCSS Config to your project

### TanStack Query

Expand All @@ -103,6 +103,20 @@ Chances are that you will need this route handler.

<<< ../../apps/next/app/auth/confirm/route.ts

### TailwindCSS Config

Make sure that the module components are included in your TailwindCSS config.

```ts
const config = {
content: [
"./modules/**/*.{ts,tsx}", // [!code ++]
// ...
],
// ...
};
```

## 5. Start your development server

::: warning Before proceeding
Expand Down

0 comments on commit d978ebe

Please sign in to comment.