add tailwind to next
npx create-next-app -e with-tailwindcss my-project
cd my-projectadd tailwind to next
npx create-next-app -e with-tailwindcss my-project
cd my-projectadd tailwind to next
# If you're on Next.js v10 or newer
npm install -D tailwindcss@latest postcss@latest autoprefixer@latest
# If you're on Next.js v9 or older
npm install -D tailwindcss@npm:@tailwindcss/postcss7-compat postcss@^7 autoprefixer@^9add tailwind to next
npx tailwindcss init -padd tailwind to next
// tailwind.config.js
  module.exports = {
-   purge: [],
+   purge: ['./pages/**/*.{js,ts,jsx,tsx}', './components/**/*.{js,ts,jsx,tsx}'],
    darkMode: false, // or 'media' or 'class'
    theme: {
      extend: {},
    },
    variants: {
      extend: {},
    },
    plugins: [],
  }add tailwind to next
// pages/_app.js
- import '../styles/globals.css'
+ import 'tailwindcss/tailwind.css'
  function MyApp({ Component, pageProps }) {
    return <Component {...pageProps} />
  }
  export default MyAppadd tailwind to next
// pages/_app.js
import '../styles/globals.css'
function MyApp({ Component, pageProps }) {
  return <Component {...pageProps} />
}
export default MyAppadd tailwind to next
// tailwind.config.js
module.exports = {
  purge: [],
  darkMode: false, // or 'media' or 'class'
  theme: {
    extend: {},
  },
  variants: {
    extend: {},
  },
  plugins: [],
}add tailwind to next
// postcss.config.js
module.exports = {
  plugins: {
    tailwindcss: {},
    autoprefixer: {},
  },
}add tailwind to next
/* ./styles/globals.css */
@tailwind base;
@tailwind components;
@tailwind utilities;Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us
