From 738e2a4e7e2ac7376358f8beef26f94e9ac96ad8 Mon Sep 17 00:00:00 2001 From: Bradlee Speice Date: Sat, 15 Apr 2023 12:56:22 -0400 Subject: [PATCH] Run `prettier` --- pages/index.tsx | 12 ++++++------ tsconfig.json | 2 +- vite.config.ts | 14 +++++++------- 3 files changed, 14 insertions(+), 14 deletions(-) diff --git a/pages/index.tsx b/pages/index.tsx index 7ea1e01..b4d60cf 100644 --- a/pages/index.tsx +++ b/pages/index.tsx @@ -1,9 +1,9 @@ import React from "react"; export default function Page() { - return ( - <> -

Is this thing on?

- - ); -} \ No newline at end of file + return ( + <> +

Is this thing on?

+ + ); +} diff --git a/tsconfig.json b/tsconfig.json index 219f581..3c50edf 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -15,5 +15,5 @@ "isolatedModules": true, "noEmit": true, "jsx": "react-jsx" - }, + } } diff --git a/vite.config.ts b/vite.config.ts index 4fec71b..28c75b2 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -1,14 +1,14 @@ -import { defineConfig } from 'vite' -import blog from "@bspeice/vite-plugin-blog" -import mdx from "@mdx-js/rollup" -import react from '@vitejs/plugin-react-swc' +import { defineConfig } from "vite"; +import blog from "@bspeice/vite-plugin-blog"; +import mdx from "@mdx-js/rollup"; +import react from "@vitejs/plugin-react-swc"; export default defineConfig({ plugins: [ blog({ - "/": "/pages/index" + "/": "/pages/index", }), mdx(), - react() + react(), ], -}) +});