mirror of
https://github.com/vegu-ai/talemate.git
synced 2025-09-04 19:39:14 +00:00
22 lines
396 B
JavaScript
22 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,
|
|
}
|
|
}
|
|
})
|