Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Supabase Quickstart Screen + Tailwind 1.x to 2.x #20770

Merged
merged 10 commits into from
Jan 11, 2021
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: [],
}