2
0

Revert "⬆️ Upgrade next packages"

This reverts commit 401efa9d0c.
This commit is contained in:
Baptiste Arnaud
2023-08-14 21:49:03 +02:00
parent 1274d2581d
commit 22cedb379d
5 changed files with 140 additions and 276 deletions

View File

@@ -14,13 +14,14 @@
"@chakra-ui/react": "2.7.1",
"@emotion/react": "11.11.1",
"@emotion/styled": "11.11.0",
"@vercel/analytics": "1.0.1",
"@typebot.io/nextjs": "workspace:*",
"aos": "2.3.4",
"@typebot.io/prisma": "workspace:*",
"focus-visible": "5.2.0",
"framer-motion": "10.12.20",
"@typebot.io/schemas": "workspace:*",
"next": "13.4.13",
"next": "13.4.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"@typebot.io/lib": "workspace:*"
@@ -36,6 +37,7 @@
"cross-env": "7.0.3",
"eslint": "8.44.0",
"eslint-config-custom": "workspace:*",
"next-transpile-modules": "10.0.0",
"postcss": "8.4.26",
"prettier": "3.0.0",
"@typebot.io/tsconfig": "workspace:*",

View File

@@ -4,6 +4,7 @@ import { ChakraProvider } from '@chakra-ui/react'
import 'focus-visible/dist/focus-visible'
import { theme } from '../lib/chakraTheme'
import { AppProps } from 'next/app'
import { Analytics } from '@vercel/analytics/react'
import AOS from 'aos'
import 'aos/dist/aos.css'
@@ -19,6 +20,7 @@ const App = ({ Component, pageProps }: AppProps) => {
return (
<ChakraProvider theme={theme}>
<Component {...pageProps} />
<Analytics />
</ChakraProvider>
)
}