Skip to content
Merged
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
4 changes: 0 additions & 4 deletions apps/website/public/_headers
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,6 @@
/build/*
Cache-Control: public, max-age=31536000, s-maxage=31536000, immutable

# Pagefind search assets - long-term caching
/pagefind/*
Cache-Control: public, max-age=31536000, s-maxage=31536000, immutable

# Documentation pages - cache at edge, allow quick browser updates
/docs/*
Cache-Control: public, max-age=600, s-maxage=86400, stale-while-revalidate=604800
Expand Down
6 changes: 2 additions & 4 deletions apps/website/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ import autoAPI from './auto-api';
import { ShikiTransformer } from 'shiki';
import tailwindcss from '@tailwindcss/vite';
import { qwikInsights } from '@builder.io/qwik-labs/vite';
import basicSsl from '@vitejs/plugin-basic-ssl';

export default defineConfig(async () => {
const { default: shikiRehype } = await import('@shikijs/rehype');
Expand Down Expand Up @@ -38,7 +37,7 @@ export default defineConfig(async () => {
}),
qwikVite({
lint: false,
debug: true,
debug: false,
tsconfigFileNames: ['tsconfig.app.json'],
client: {
outDir: '../../dist/apps/website/client',
Expand All @@ -49,10 +48,9 @@ export default defineConfig(async () => {
}),
tsconfigPaths({ root: '../../' }),
// Uncomment for debugging preview with http2 via https
// basicSsl(),
tailwindcss(),
// qwikInsights({ publicApiKey: '1uelfebvo7l' }),
basicSsl(),
// basicSsl(),
],

server: {
Expand Down
Loading