Run prettier

This commit is contained in:
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

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

View File

@ -1,14 +1,14 @@
import { defineConfig } from 'vite' import { defineConfig } from "vite";
import blog from "@bspeice/vite-plugin-blog" import blog from "@bspeice/vite-plugin-blog";
import mdx from "@mdx-js/rollup" import mdx from "@mdx-js/rollup";
import react from '@vitejs/plugin-react-swc' import react from "@vitejs/plugin-react-swc";
export default defineConfig({ export default defineConfig({
plugins: [ plugins: [
blog({ blog({
"/": "/pages/index" "/": "/pages/index",
}), }),
mdx(), mdx(),
react() react(),
], ],
}) });