yunohost-admin/app/vue.config.js

18 lines
264 B
JavaScript
Raw Normal View History

2020-07-06 20:13:01 +02:00
module.exports = {
pluginOptions: {
i18n: {
locale: 'en',
fallbackLocale: 'en',
localeDir: 'locales',
enableInSFC: false
}
2020-07-10 18:36:46 +02:00
},
devServer: {
proxy: {
'^/api': {
target: process.env.API_URL,
}
}
2020-07-06 20:13:01 +02:00
}
}