-
Notifications
You must be signed in to change notification settings - Fork 10
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
Missing components? #2
Comments
I have found the issue, My _app,tsx now: import type { AppProps } from 'next/app'; import '../styles/globals.css'; import ThemeProvider from ' function MyApp({ Component, pageProps }: AppProps) { function TinaWrapper(props: React.PropsWithChildren<{}>) {
} return <>{props.children}</>; export default MyApp; |
Still problems when logging into /admin/index.html:
|
Fixed: import type { AppProps } from 'next/app'; import '../styles/globals.css'; const App = ({ Component, pageProps }) => { export default App |
Hey,
im trying to setup your project but im stuck with a missing file as it seems:
wait - compiling...
error - ./pages/_app.tsx:22:12
Module not found: Can't resolve '../.tina/components/TinaDynamicProvider'
20 | if (shouldUseTinaEditor()) {
21 | const Tina = dynamic(
My .tina didnt even have a components folder.
I tough i need to copy it from the root structure ./components but still there is no TinaDynamicProvider.
Best wishes!
The text was updated successfully, but these errors were encountered: