From db8d35536820f22900545a5046bb3b64021feda6 Mon Sep 17 00:00:00 2001 From: SrIzan10 <66965250+SrIzan10@users.noreply.github.com> Date: Wed, 23 Aug 2023 15:38:26 +0200 Subject: [PATCH] chore: forgot to remove that rollup thing there --- vite.config.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/vite.config.ts b/vite.config.ts index 46f6c7b..335126d 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -1,10 +1,9 @@ import { defineConfig } from 'vite' import react from '@vitejs/plugin-react' -import mdx from '@mdx-js/rollup' // https://vitejs.dev/config/ export default defineConfig({ - plugins: [react(), mdx({ baseUrl: '/blog' })], + plugins: [react()], server: { port: 3000 }