Files
vitify-nuxt/vite.config.js
2025-04-22 10:56:56 +07:00

10 lines
317 B
JavaScript

// https://vitejs.dev/config/
export default defineConfig({
optimizeDeps: {
// Exclude vuetify since it has an issue with vite dev - TypeError: makeVExpansionPanelTextProps is not a function - the makeVExpansionPanelTextProps is used before it is defined
exclude: ['vuetify'],
},
// more config....
})