Skip to content

Commit

Permalink
stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
MoOx committed Nov 27, 2024
1 parent 30bb9b2 commit e9ccdca
Show file tree
Hide file tree
Showing 3 changed files with 49 additions and 0 deletions.
42 changes: 42 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
"name": "moox.fr",
"version": "0.1.0",
"private": true,
"engines": {
"node": "22.x"
},
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
Expand Down Expand Up @@ -32,6 +35,7 @@
}
},
"dependencies": {
"@vercel/speed-insights": "^1.1.0",
"next": "15.0.3",
"react": "19.0.0-rc-66855b96-20241106",
"react-dom": "19.0.0-rc-66855b96-20241106",
Expand Down
3 changes: 3 additions & 0 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
import "@/shared/react-native/Next.css";
import { SpeedInsights } from "@vercel/speed-insights/next";

import { getWebThemeId, getWebThemeStyleSheet, useTheme } from "@/app/styles";
import { NextStylesheetProvider } from "@/shared/react-native/NextStylesheetProvider";
import ReactNativeProviders from "@/shared/react-native/ReactNativeProviders";
Expand Down Expand Up @@ -26,6 +28,7 @@ export default function RootLayout({
<NextStylesheetProvider>
<ReactNativeProviders>{children}</ReactNativeProviders>
</NextStylesheetProvider>
<SpeedInsights />
</body>
</html>
);
Expand Down

0 comments on commit e9ccdca

Please sign in to comment.