10 lines
317 B
JavaScript
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....
|
|
})
|