-
Notifications
You must be signed in to change notification settings - Fork 0
Expose Exhibition under /exhibition + mobile navigation #281
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
63a154f
e6751d1
076196d
d258f98
d677d92
725f39e
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,32 @@ | ||
| { | ||
| "rewrites": [ | ||
| { | ||
| "source": "/api/events", | ||
| "destination": "https://sentiment-exhibition.vercel.app/api/events/" | ||
| }, | ||
| { | ||
| "source": "/api/events/", | ||
| "destination": "https://sentiment-exhibition.vercel.app/api/events/" | ||
| }, | ||
| { | ||
| "source": "/api/events/:path*", | ||
| "destination": "https://sentiment-exhibition.vercel.app/api/events/:path*" | ||
| }, | ||
| { | ||
| "source": "/public/:path*", | ||
| "destination": "https://sentiment-exhibition.vercel.app/public/:path*" | ||
| }, | ||
| { | ||
| "source": "/exhibition", | ||
| "destination": "https://sentiment-exhibition.vercel.app/" | ||
| }, | ||
| { | ||
| "source": "/exhibition/", | ||
| "destination": "https://sentiment-exhibition.vercel.app/" | ||
| }, | ||
| { | ||
| "source": "/exhibition/:path*", | ||
| "destination": "https://sentiment-exhibition.vercel.app/:path*" | ||
| } | ||
| ] | ||
|
Comment on lines
+2
to
+31
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧩 Analysis chain🏁 Script executed: #!/bin/bash
# Confirm the exhibition app serves a Next.js HTML shell referencing /_next/*
curl -s -L https://sentiment-exhibition.vercel.app/ | grep -oE '"/_next/[^"]+"|href="/[^"]+"|src="/[^"]+"' | sort -u | head -40Repository: dmnktoe/sentiment Length of output: 43 🏁 Script executed: #!/bin/bash
# Get response headers and first part of HTML to identify the app type
curl -s -I https://sentiment-exhibition.vercel.app/ | head -20
echo "---"
curl -s https://sentiment-exhibition.vercel.app/ | head -100Repository: dmnktoe/sentiment Length of output: 5142 🏁 Script executed: #!/bin/bash
# Check if the domain is accessible and what it serves
curl -s -w "\nHTTP Status: %{http_code}\n" https://sentiment-exhibition.vercel.app/ | head -150Repository: dmnktoe/sentiment Length of output: 6606 Relative asset paths in the exhibition app will 404 under the current rewrites. The exhibition app at When served via Either:
🤖 Prompt for AI Agents |
||
| } | ||
Uh oh!
There was an error while loading. Please reload this page.