Skip to content

Commit

Permalink
fix: js utils/tailwindconfig templates
Browse files Browse the repository at this point in the history
  • Loading branch information
huntabyte committed Oct 27, 2024
1 parent 17688ee commit 5858f7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/cli/src/utils/templates.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ export function cn(...inputs: ClassValue[]) {

export const UTILS_JS = `import { clsx } from "clsx";
import { twMerge } from "tailwind-merge";
import tailwindcssAnimate from "tailwindcss-animate";
export function cn(...inputs) {
return twMerge(clsx(inputs));
}
`;

const TAILWIND_JS = `import { fontFamily } from "tailwindcss/defaultTheme";
import tailwindcssAnimate from "tailwindcss-animate";
/** @type {import('tailwindcss').Config} */
const config = {`;
Expand Down

0 comments on commit 5858f7e

Please sign in to comment.