Files
ersatztv/ErsatzTV/client-app/vue.config.js
T
Rafael VieiraandGitHub 2e1073eb53 Add support to internationalization (#764)
* client-app: Improve development documentation

* client-app: add basic support to translation

* client-app: fix i18n and create lang state

* client-app: add language selector

* client-app: add translation EN and PT-BR
2022-04-27 10:58:27 -05:00

22 lines
463 B
JavaScript

const { defineConfig } = require('@vue/cli-service');
module.exports = defineConfig({
transpileDependencies: ['vuetify'],
runtimeCompiler: true,
pwa: {
name: 'ErsatzTV'
},
publicPath: '/v2/',
outputDir: '../wwwroot/v2',
filenameHashing: false,
pluginOptions: {
i18n: {
locale: 'en',
fallbackLocale: 'en',
localeDir: 'locales',
enableInSFC: true
}
}
});