mirror of
https://github.com/vercel/next.js.git
synced 2026-09-20 02:25:18 +08:00
c1a1aa4ae2
Test for https://github.com/tailwindlabs/tailwindcss/discussions/6265 Issue started with https://github.com/vercel/next.js/pull/31798 ## Bug - [ ] Related issues linked using `fixes #number` - [ ] Integration tests added - [ ] Errors have helpful link attached, see `contributing.md` ## Feature - [ ] Implements an existing feature request or RFC. Make sure the feature request has been accepted for implementation before opening a PR. - [ ] Related issues linked using `fixes #number` - [ ] Integration tests added - [ ] Documentation added - [ ] Telemetry added. In case of a feature if it's used or not. - [ ] Errors have helpful link attached, see `contributing.md` ## Documentation / Examples - [ ] Make sure the linting passes by running `yarn lint`
8 lines
140 B
JavaScript
8 lines
140 B
JavaScript
import 'tailwindcss/tailwind.css'
|
|
|
|
function MyApp({ Component, pageProps }) {
|
|
return <Component {...pageProps} />
|
|
}
|
|
|
|
export default MyApp
|