Bug fixes: - Add beforeValidate slug hooks to Blog, Events, Pages, LandingPages (slugify) - Add auto-generation hooks for orderNumber (Orders) and ticketCode (Tickets) - Restrict Tickets.create to isAuthenticated (was publicly accessible) - Rename isAdminOrPublished → isAuthenticatedOrPublished for clarity - Remove redundant brand CSS utilities (Tailwind v4 generates them from @theme) - Remove autoprefixer (redundant with @tailwindcss/postcss) - Replace real API keys/IDs with placeholders in .env.example Phase 3: - src/middleware.ts — UTM first-touch cookies + maintenance mode redirect - src/lib/utm.ts — getUtmFromCookies(), getGoogleClientId() - src/app/(frontend)/maintenance/page.tsx — maintenance page Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
7 lines
92 B
JavaScript
7 lines
92 B
JavaScript
const config = {
|
|
plugins: {
|
|
'@tailwindcss/postcss': {},
|
|
},
|
|
}
|
|
|
|
export default config
|