mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
196f71feb7
Instead of bundling `postcss-cli` we can now make use of `@zeit/with-css`.
This also means we can get rid of the `<style>` import and concurrent build step for css. 🎉
22 lines
426 B
JSON
22 lines
426 B
JSON
{
|
|
"name": "with-tailwindcss",
|
|
"version": "1.0.0",
|
|
"scripts": {
|
|
"dev": "next",
|
|
"build": "next build",
|
|
"start": "next start"
|
|
},
|
|
"dependencies": {
|
|
"@zeit/next-css": "^1.0.1",
|
|
"next": "latest",
|
|
"react": "^16.0.0",
|
|
"react-dom": "^16.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"autoprefixer": "^7.1.6",
|
|
"cssnano": "^3.10.0",
|
|
"postcss-easy-import": "^3.0.0",
|
|
"tailwindcss": "^0.6.6"
|
|
}
|
|
}
|