Formatting + add format script

pull/1/head
Elias Almqvist 1 year ago
parent 488979f9a6
commit 3c56a13a33
No known key found for this signature in database
GPG Key ID: E31A99CE3E75A158
  1. 2
      components.json
  2. 3
      package.json
  3. 4
      src/app/page.tsx
  4. 6
      src/lib/utils.ts
  5. 20
      tailwind.config.ts
  6. 10
      tsconfig.json

@ -14,4 +14,4 @@
"components": "@/components", "components": "@/components",
"utils": "@/lib/utils" "utils": "@/lib/utils"
} }
} }

@ -6,7 +6,8 @@
"dev": "next dev", "dev": "next dev",
"build": "next build", "build": "next build",
"start": "next start", "start": "next start",
"lint": "next lint" "lint": "next lint",
"format": "prettier --write \"**/*.{js,cjs,mjs,ts,tsx,md,json,mdx}\" --ignore-path .gitignore"
}, },
"dependencies": { "dependencies": {
"class-variance-authority": "^0.7.0", "class-variance-authority": "^0.7.0",

@ -1,7 +1,5 @@
import Image from "next/image"; import Image from "next/image";
export default function Home() { export default function Home() {
return ( return <></>;
<></>
);
} }

@ -1,6 +1,6 @@
import { type ClassValue, clsx } from "clsx" import { type ClassValue, clsx } from "clsx";
import { twMerge } from "tailwind-merge" import { twMerge } from "tailwind-merge";
export function cn(...inputs: ClassValue[]) { export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs)) return twMerge(clsx(inputs));
} }

@ -1,13 +1,14 @@
import type { Config } from "tailwindcss" import type { Config } from "tailwindcss";
import { fontFamily } from "tailwindcss/defaultTheme";
const config = { const config = {
darkMode: ["class"], darkMode: ["class"],
content: [ content: [
'./pages/**/*.{ts,tsx}', "./pages/**/*.{ts,tsx}",
'./components/**/*.{ts,tsx}', "./components/**/*.{ts,tsx}",
'./app/**/*.{ts,tsx}', "./app/**/*.{ts,tsx}",
'./src/**/*.{ts,tsx}', "./src/**/*.{ts,tsx}",
], ],
prefix: "", prefix: "",
theme: { theme: {
container: { container: {
@ -18,6 +19,9 @@ const config = {
}, },
}, },
extend: { extend: {
fontFamily: {
sans: ["var(--font-sans)", ...fontFamily.sans],
},
colors: { colors: {
border: "hsl(var(--border))", border: "hsl(var(--border))",
input: "hsl(var(--input))", input: "hsl(var(--input))",
@ -75,6 +79,6 @@ const config = {
}, },
}, },
plugins: [require("tailwindcss-animate")], plugins: [require("tailwindcss-animate")],
} satisfies Config } satisfies Config;
export default config export default config;

@ -14,13 +14,13 @@
"incremental": true, "incremental": true,
"plugins": [ "plugins": [
{ {
"name": "next" "name": "next",
} },
], ],
"paths": { "paths": {
"@/*": ["./src/*"] "@/*": ["./src/*"],
} },
}, },
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"exclude": ["node_modules"] "exclude": ["node_modules"],
} }

Loading…
Cancel
Save