/ concept-collection / mdshare
Sign in
concept-collection / mdshare
mdshare / vite.config.ts
9 lines · 269 BCodeBlameHistory
3e0fff3mdshare: markdown editor with the document stored in the URLJeremy Magland 1import { defineConfig } from 'vite'
2import react from '@vitejs/plugin-react'
4// Relative base so the built site works from any path (GitHub Pages project
5// site, a subdirectory, or the filesystem).
6export default defineConfig({
7 base: './',
8 plugins: [react()],
9})
moveopenescclose