mirror of
https://github.com/bspeice/speice.io
synced 2024-11-14 22:18:10 -05:00
15 lines
279 B
TypeScript
15 lines
279 B
TypeScript
|
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"
|
||
|
}),
|
||
|
mdx(),
|
||
|
react()
|
||
|
],
|
||
|
})
|