-
|
Currently, I run vitepress in the root of repository where public folder exists. I don't want to include this directory. |
Beta Was this translation helpful? Give feedback.
Answered by
brc-dd
Nov 16, 2025
Replies: 1 comment 1 reply
-
|
Something like this should work: // .vitepress/config.ts
import { defineConfig } from 'vitepress'
export default defineConfig({
vite: {
publicDir: false
}
}) |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
Abdillah
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Something like this should work: