* 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
22 lines
463 B
JavaScript
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
|
|
}
|
|
}
|
|
});
|