Answers for "create next app tailwind css"

CSS
0

add tailwind to next

// pages/_app.js
- import '../styles/globals.css'
+ import 'tailwindcss/tailwind.css'

  function MyApp({ Component, pageProps }) {
    return <Component {...pageProps} />
  }

  export default MyApp
Posted by: Guest on August-28-2021

Browse Popular Code Answers by Language