juhanakristian / remix-auth-microsoft

Microsoft authentication strategy for remix-auth
MIT License
37 stars 19 forks source link

Not compatible with remix 2.0 -- easy workaround #22

Open im-neil opened 9 months ago

im-neil commented 9 months ago

When trying to install remix-auth-microsoft using remix 2.0, I get the following error:

npm ERR! Conflicting peer dependency: @remix-run/server-runtime@1.19.3 npm ERR! node_modules/@remix-run/server-runtime npm ERR! peer @remix-run/server-runtime@"^1.0.0" from remix-auth-microsoft@2.0.0

Quick workaround... add the following override to package.json: "overrides": { "remix-auth-microsoft": { "@remix-run/server-runtime": "^2.0.0" } },