Skip to content

Commit

Permalink
Format files
Browse files Browse the repository at this point in the history
  • Loading branch information
erxclau committed Nov 12, 2023
1 parent 545890d commit 3f728ab
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 14 deletions.
6 changes: 3 additions & 3 deletions next.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'export',
}
output: "export",
};

module.exports = nextConfig
module.exports = nextConfig;
2 changes: 1 addition & 1 deletion postcss.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ module.exports = {
tailwindcss: {},
autoprefixer: {},
},
}
};
8 changes: 5 additions & 3 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import type { Metadata, Viewport } from "next";

import "./globals.css";
import { sans, serif } from "./fonts";
import "./globals.css";

export const viewport: Viewport = {
themeColor: "#ffffff",
Expand All @@ -12,7 +12,8 @@ export const viewport: Viewport = {
export const metadata: Metadata = {
metadataBase: new URL("https://michigandaily.github.io"),
title: "The Michigan Daily Web Team",
description: "Get to know the people and work of The Michigan Daily Web Team.",
description:
"Get to know the people and work of The Michigan Daily Web Team.",
creator: "The Michigan Daily",
publisher: "The Michigan Daily",
icons: [
Expand Down Expand Up @@ -40,7 +41,8 @@ export const metadata: Metadata = {
openGraph: {
type: "website",
title: "The Michigan Daily Web Team",
description: "Get to know the people and work of The Michigan Daily Web Team.",
description:
"Get to know the people and work of The Michigan Daily Web Team.",
siteName: "The Michigan Daily",
images: [],
},
Expand Down
14 changes: 7 additions & 7 deletions tailwind.config.ts
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
import type { Config } from 'tailwindcss'
import type { Config } from "tailwindcss";

const config: Config = {
content: [
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
fontFamily: {
sans: ["var(--font-open-sans)"],
serif: ["var(--font-lora)"],
}
},
},
},
plugins: [],
}
export default config
};
export default config;

0 comments on commit 3f728ab

Please sign in to comment.