[examples/default,#560]: stub nextjs app using tailwind.

This commit is contained in:
Rufus Pollock
2021-05-19 19:11:32 +02:00
parent 2721727c75
commit 52028ae867
11 changed files with 2576 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
{
"name": "with-tailwindcss",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start"
},
"dependencies": {
"next": "latest",
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"devDependencies": {
"autoprefixer": "^10.0.4",
"postcss": "^8.1.10",
"tailwindcss": "^2.1.1"
}
}