mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-02-23 18:37:23 -08:00
* Translations + danish * changed back proxy target to use ENV * Resolved more merge conflicts * Removed test in translation * Documentation of translations * Updated translations * removed old packages Co-authored-by: Hayden <64056131+hay-kot@users.noreply.github.com>
22 lines
492 B
JavaScript
22 lines
492 B
JavaScript
module.exports = {
|
|
transpileDependencies: ["vuetify"],
|
|
publicPath: process.env.NODE_ENV === "production" ? "/static/" : "/",
|
|
outputDir: process.env.NODE_ENV === "production" ? "./dist" : "../mealie/web",
|
|
devServer: {
|
|
proxy: {
|
|
"/api": {
|
|
target: process.env.VUE_APP_API_BASE_URL,
|
|
secure: false,
|
|
},
|
|
},
|
|
},
|
|
pluginOptions: {
|
|
i18n: {
|
|
locale: 'en',
|
|
fallbackLocale: 'en',
|
|
localeDir: 'locales',
|
|
enableInSFC: true
|
|
}
|
|
}
|
|
};
|