Replies: 1 comment 3 replies
-
Probably need to do something like: vite: {
// ...
ssr: {
noExternal: ['vuetify']
}
} |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I've been trying to use Vuetify components with VitePress so as to avoid having to write all of my components by hand.
I looked here, and noticed that someone said they had got it working: vuetifyjs/vuetify#13859
This worked locally (though I had a the same issues with styling), but I could not get this to work after deployment. I was getting the error when deploying via github pages:
I tried a few things. First, I added vite-plugin-vuetify to the config in
.vitepress/config.mts
But this did not fix the issue, either.
I really just want a way to make nice tables and other components, and be able to use slots with :items so I don't have to convert my data (that exists in csv forms) to markdown tables.
Beta Was this translation helpful? Give feedback.
All reactions