Compare commits
2 commits
4a6bc90ecf
...
ffc43e9071
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
ffc43e9071 | ||
|
|
03ee678059 |
|
|
@ -46,8 +46,6 @@ services:
|
|||
traefik.http.routers.crabfit-frontend.rule: Host(`a10y.techwork.zone`) || Host(`availability.techwork.zone`)
|
||||
traefik.http.routers.crabfit-frontend.tls: true
|
||||
traefik.http.routers.crabfit-frontend.tls.certresolver: letsencrypt_standalone
|
||||
environment:
|
||||
NEXT_PUBLIC_API_URL: https://api.a10y.techwork.zone
|
||||
networks: [ public ]
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
NEXT_PUBLIC_API_URL="http://127.0.0.1:3000"
|
||||
NEXT_PUBLIC_API_URL="https://api.a10y.techwork.zone"
|
||||
|
||||
# Google auth for calendar syncing, feature will be disabled if these aren't set
|
||||
# NEXT_PUBLIC_GOOGLE_CLIENT_ID=""
|
||||
|
|
|
|||
|
|
@ -15,7 +15,6 @@
|
|||
"@giraugh/tools": "^1.6.0",
|
||||
"@js-temporal/polyfill": "^0.4.4",
|
||||
"@microsoft/microsoft-graph-client": "^3.0.5",
|
||||
"@vercel/analytics": "^1.0.1",
|
||||
"accept-language": "^3.0.18",
|
||||
"chroma.ts": "^1.0.10",
|
||||
"hue-map": "^1.0.0",
|
||||
|
|
|
|||
|
|
@ -1,6 +1,5 @@
|
|||
import { Metadata } from 'next'
|
||||
import { Karla } from 'next/font/google'
|
||||
import { Analytics } from '@vercel/analytics/react'
|
||||
|
||||
import Egg from '/src/components/Egg/Egg'
|
||||
import Settings from '/src/components/Settings/Settings'
|
||||
|
|
@ -44,7 +43,6 @@ const RootLayout = async ({ children }: { children: React.ReactNode }) => {
|
|||
|
||||
{children}
|
||||
|
||||
<Analytics />
|
||||
</body>
|
||||
</html>
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue