Run `prettier`

vite
Bradlee Speice 2023-04-15 12:56:22 -04:00
parent 3d7538bfbe
commit 738e2a4e7e
3 changed files with 14 additions and 14 deletions

View File

@ -1,9 +1,9 @@
import React from "react";
export default function Page() {
return (
<>
<p>Is this thing on?</p>
</>
);
}
return (
<>
<p>Is this thing on?</p>
</>
);
}

View File

@ -15,5 +15,5 @@
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx"
},
}
}

View File

@ -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(),
],
})
});