Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions frontend/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,16 @@
<meta property="og:url" content="%VITE_BASE_URL%/" />

<!-- Discord/Twitter Thumbnail Preview -->
<meta property="og:image" content="%VITE_BASE_URL%/web-app-manifest-512x512.png?v=20260827" />
<meta property="og:image" content="%VITE_BASE_URL%/web-app-manifest-512x512.png?v=20260827-1" />
<meta name="twitter:card" content="summary" />

<!-- Icons -->
<link rel="icon" type="image/png" href="/favicon-96x96.png?v=20260827" sizes="96x96" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg?v=20260827" />
<link rel="shortcut icon" href="/favicon.ico?v=20260827" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png?v=20260827" />
<link rel="icon" type="image/png" href="/favicon-96x96.png?v=20260827-1" sizes="96x96" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg?v=20260827-1" />
<link rel="shortcut icon" href="/favicon.ico?v=20260827-1" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png?v=20260827-1" />
<meta name="apple-mobile-web-app-title" content="Tickets Bot" />
<link rel="manifest" href="/site.webmanifest?v=20260827" />
<link rel="manifest" href="/site.webmanifest?v=20260827-1" />

<!-- Structured Data -->
<script type="application/ld+json">
Expand Down
16 changes: 16 additions & 0 deletions frontend/public/_headers
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Default security and cache headers for all routes
/*
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Referrer-Policy: strict-origin-when-cross-origin
Permissions-Policy: camera=(), microphone=(), geolocation=()
Strict-Transport-Security: max-age=31536000; includeSubDomains; preload
Cache-Control: public, max-age=0, must-revalidate

# Immutable 1-year cache for Vite hashed production bundle assets
/assets/*
Cache-Control: public, max-age=31536000, immutable

# Prevent stale HTML caching so new deployments hit users immediately
/index.html
Cache-Control: public, max-age=0, must-revalidate
Binary file modified frontend/public/apple-touch-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified frontend/public/favicon-96x96.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified frontend/public/favicon.ico
Binary file not shown.
18 changes: 1 addition & 17 deletions frontend/public/favicon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified frontend/public/images/multipanel_buttons.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified frontend/public/images/multipanel_dropdown.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified frontend/public/images/notification_channel.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified frontend/public/images/panel_message.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified frontend/public/images/transcript_channel.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions frontend/public/site.webmanifest
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
"short_name": "Tickets",
"icons": [
{
"src": "/web-app-manifest-192x192.png?v=20260827",
"src": "/web-app-manifest-192x192.png?v=20260827-1",
"sizes": "192x192",
"type": "image/png",
"purpose": "maskable"
},
{
"src": "/web-app-manifest-512x512.png?v=20260827",
"src": "/web-app-manifest-512x512.png?v=20260827-1",
"sizes": "512x512",
"type": "image/png",
"purpose": "maskable"
Expand Down
Binary file modified frontend/public/web-app-manifest-192x192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified frontend/public/web-app-manifest-512x512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions frontend/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
},
"strict": true,
"skipLibCheck": true,
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
Expand Down
3 changes: 3 additions & 0 deletions frontend/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,9 @@ export default defineConfig(({ mode }) => {
},
target: "es2022",
minify: "terser",
terserOptions: {
ecma: 2022, // Retains modern ES syntax during minification
},
sourcemap: false,
},
};
Expand Down
Loading