Skip to content

Commit

Permalink
Update Supabase Quickstart Screen + Tailwind 1.x to 2.x (#20770)
Browse files Browse the repository at this point in the history
Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
  • Loading branch information
ciruz and kodiakhq[bot] authored Jan 11, 2021
1 parent 8bfe06e commit 06efca9
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/with-supabase-auth-realtime-db/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ Sign up to Supabase - [https://app.supabase.io](https://app.supabase.io) and cre

Once your database has started, run the "Slack Clone" quickstart.

![Slack Clone Quick Start](https://user-images.githubusercontent.com/10214025/88916135-1b1d7a00-d298-11ea-82e7-e2c18314e805.png)
![Slack Clone Quick Start](./docs/quickstart.png)

### Step 3. Set up environment variables

Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 6 additions & 2 deletions examples/with-supabase-auth-realtime-db/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,11 @@
"next": "latest",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"sass": "^1.26.2",
"tailwindcss": "^1.1.4"
"sass": "^1.26.2"
},
"devDependencies": {
"autoprefixer": "10.1.0",
"postcss": "8.2.2",
"tailwindcss": "2.0.2"
}
}
6 changes: 6 additions & 0 deletions examples/with-supabase-auth-realtime-db/postcss.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
module.exports = {
plugins: {
tailwindcss: {},
autoprefixer: {},
},
}
11 changes: 11 additions & 0 deletions examples/with-supabase-auth-realtime-db/tailwind.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
module.exports = {
purge: ['./pages/**/*.js', './components/**/*.js'],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {},
},
variants: {
extend: {},
},
plugins: [],
}

0 comments on commit 06efca9

Please sign in to comment.