-
-
Notifications
You must be signed in to change notification settings - Fork 180
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
nextJS 15 #499
Comments
Hey, good question. I would assume so since there aren’t big breaking changes that I know of, but I still have to test it |
The big ones I heard about include changing cookie / header / params / search params to be async instead of sync In case you'd like to check the full list: |
Not a blocker, but I see the following warning when I use Next.js 15 with Solito when I run the local development server/builds:
'use client';
import { useServerInsertedHTML } from 'next/navigation';
import { StyleSheet } from 'react-native';
export const StylesProvider = ({ children }: React.PropsWithChildren) => {
useServerInsertedHTML(() => {
// @ts-ignore -- Need below for Solito: https://solito.dev/app-directory/overview#appstyles-providertsx
const sheet = StyleSheet.getSheet();
return (
//
<style
// biome-ignore lint/security/noDangerouslySetInnerHtml: Required for Solito Router set up: https://solito.dev/app-directory/overview#appstyles-providertsx
dangerouslySetInnerHTML={{ __html: sheet.textContent }}
id={sheet.id}
/>
);
});
return <>{children}</>;
}; Seems related to: gilbarbara/react-joyride#1072 |
Heyo
With the caching and async reworks done in nextJS 15 I'm a little worried of trying to upgrade my solito project on next 14.
Does solito work with next 15? If not are there plans to update solito for next 15?
The text was updated successfully, but these errors were encountered: