firebase / firebaseui-web-react

React Wrapper for firebaseUI Web
Apache License 2.0
1.26k stars 249 forks source link

Do not import CSS #150

Closed zoeleu closed 3 years ago

zoeleu commented 3 years ago

https://nextjs.org/docs/messages/css-npm

You should leave it up to the user.

NextJS does not allow this behavior, how would I fix it?

zoeleu commented 3 years ago

sorry i am just very stupid

paymog commented 2 years ago

how did you fix your issue? I'm running into a similar problem

raaaahman commented 1 year ago

I had a similar issue. The problem was that I was using:

import { StyledFirebaseAuth } from "react-firebaseui";

instead of:

import StyledFirebaseAuth from "react-firebaseui/StyledFirebaseAuth";

Don't ask me why both syntax resolve differently though...