classify web
This commit is contained in:
5
lib/constants.js
Normal file
5
lib/constants.js
Normal file
@@ -0,0 +1,5 @@
|
||||
export const SEO_REVALIDATE_SECONDS =
|
||||
(Number(process.env.NEXT_PUBLIC_SEO_REVALIDATE_MINUTES) || 60) * 60;
|
||||
|
||||
|
||||
export const SITEMAP_REVALIDATE_SECONDS = 604800;
|
||||
8
lib/utils.js
Normal file
8
lib/utils.js
Normal file
@@ -0,0 +1,8 @@
|
||||
import { clsx } from "clsx";
|
||||
import { twMerge } from "tailwind-merge"
|
||||
|
||||
export function cn(...inputs) {
|
||||
return twMerge(clsx(inputs));
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user