mirror of
https://github.com/vegu-ai/talemate.git
synced 2025-09-04 19:39:14 +00:00
* fix typo * fix openai compat config save issue maybe * fix api_handles_prompt_template no longer saving changes after last fix * koboldcpp client * default to kobold ai api * linting * conversation cleanup tweak * 0.25.2 * allowed hosts to all on dev instance * ensure numbers on parameters when sending edited values * fix prompt parameter issues * remove debug message
23 lines
421 B
JavaScript
23 lines
421 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: {
|
|
allowedHosts: "all",
|
|
client: {
|
|
overlay: {
|
|
warnings: false,
|
|
errors: false,
|
|
},
|
|
|
|
// or
|
|
overlay: false,
|
|
}
|
|
}
|
|
})
|