Skip to content

Commit

Permalink
Vault
Browse files Browse the repository at this point in the history
  • Loading branch information
pontusab committed Nov 30, 2023
1 parent 8aaf6c3 commit 9cfff94
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion apps/dashboard/next.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import "./src/env.mjs";
const config = {
reactStrictMode: true,
experimental: {
ppr: true,
// ppr: true,
},
images: {
remotePatterns: [
Expand Down
2 changes: 1 addition & 1 deletion apps/dashboard/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"@zip.js/zip.js": "^2.7.31",
"change-case": "^5.2.0",
"framer-motion": "^10.16.8",
"next": "14.0.4-canary.28",
"next": "14.0.3",
"next-international": "^1.1.4",
"next-safe-action": "^5.2.0",
"next-themes": "^0.2.1",
Expand Down
2 changes: 1 addition & 1 deletion apps/website/next.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const config = {
reactStrictMode: true,
transpilePackages: ["@midday/ui", "@midday/tailwind", "@midday/location"],
experimental: {
ppr: true,
// ppr: true,
},
eslint: {
ignoreDuringBuilds: true,
Expand Down
2 changes: 1 addition & 1 deletion apps/website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"@midday/location": "workspace:*",
"@midday/ui": "workspace:*",
"@vercel/analytics": "^1.1.1",
"next": "14.0.4-canary.28",
"next": "14.0.2",
"next-international": "^1.1.4",
"react": "18.2.0",
"react-dom": "18.2.0",
Expand Down
2 changes: 1 addition & 1 deletion apps/website/src/components/header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export function Header() {
className="pt-4 pb-4 md:pt-10 md:pb-5 flex justify-between px-5 lg:px-10 backdrop-filter backdrop-blur-2xl z-[999]"
style={{ background: "rgba(18, 18, 18,.8)" }}
>
<Link href="/">
<Link href="/" title="Midday">
<Icons.Logo />
</Link>

Expand Down
4 changes: 3 additions & 1 deletion apps/website/src/middleware.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,7 @@ export function middleware(request: NextRequest) {
}

export const config = {
matcher: ["/((?!.*\\.|api|_next/static|_next/image|favicon.ico|auth\\/).*)"],
matcher: [
"/((?!.*\\.|api|_next/static|_next/image|favicon.ico||robots.txt|auth\\/).*)",
],
};
Binary file modified bun.lockb
Binary file not shown.

0 comments on commit 9cfff94

Please sign in to comment.