uat changes

This commit is contained in:
Vladislav Khorev 2024-02-25 19:23:13 +00:00
parent 3c4661a9c8
commit 773a33e21a
2 changed files with 6 additions and 1 deletions

View File

@ -5,7 +5,7 @@
"scripts": { "scripts": {
"dev": "next dev", "dev": "next dev",
"build": "next build", "build": "next build",
"start": "next start -p 8003", "start": "next start -p 8004",
"lint": "next lint" "lint": "next lint"
}, },
"dependencies": { "dependencies": {

View File

@ -24,7 +24,12 @@ export default function RootLayout({
<Footer /> <Footer />
</Providers> </Providers>
</body> </body>
{/*
Disable google analytics in uat
<GoogleAnalytics gaId={process.env.NEXT_PUBLIC_GOOGLE_ANALYTICS || ""} /> <GoogleAnalytics gaId={process.env.NEXT_PUBLIC_GOOGLE_ANALYTICS || ""} />
*/}
</html> </html>
); );
} }