mirror of
https://github.com/YunoHost/yunohost-admin.git
synced 2024-09-03 20:06:15 +02:00
24 lines
380 B
JavaScript
24 lines
380 B
JavaScript
module.exports = {
|
|
pluginOptions: {
|
|
i18n: {
|
|
locale: 'en',
|
|
fallbackLocale: 'en',
|
|
localeDir: 'locales',
|
|
enableInSFC: false
|
|
}
|
|
},
|
|
css: {
|
|
loaderOptions: {
|
|
sass: {
|
|
prependData: '@import "@/scss/globals.scss";'
|
|
}
|
|
}
|
|
},
|
|
devServer: {
|
|
proxy: {
|
|
'^/api': {
|
|
target: process.env.API_URL
|
|
}
|
|
}
|
|
}
|
|
}
|