mirror of
https://github.com/vegu-ai/talemate.git
synced 2025-12-16 19:57:47 +01:00
23 lines
396 B
JavaScript
23 lines
396 B
JavaScript
|
|
const { defineConfig } = require('@vue/cli-service')
|
||
|
|
module.exports = defineConfig({
|
||
|
|
transpileDependencies: true,
|
||
|
|
|
||
|
|
pluginOptions: {
|
||
|
|
vuetify: {
|
||
|
|
// https://github.com/vuetifyjs/vuetify-loader/tree/next/packages/vuetify-loader
|
||
|
|
}
|
||
|
|
},
|
||
|
|
|
||
|
|
devServer: {
|
||
|
|
client: {
|
||
|
|
overlay: {
|
||
|
|
warnings: false,
|
||
|
|
errors: false,
|
||
|
|
},
|
||
|
|
|
||
|
|
// or
|
||
|
|
overlay: false,
|
||
|
|
}
|
||
|
|
}
|
||
|
|
})
|