FitTrackee/fittrackee_client/vue.config.js

32 lines
708 B
JavaScript
Raw Normal View History

2021-08-04 09:23:07 +02:00
/* eslint-disable @typescript-eslint/no-var-requires */
const path = require('path')
module.exports = {
configureWebpack: {
performance: {
maxEntrypointSize: 400000,
maxAssetSize: 500000,
},
},
chainWebpack: (config) => {
config.plugin('html').tap((args) => {
args[0].title = 'FitTrackee'
return args
})
},
publicPath: '/static/',
outputDir: path.resolve(__dirname, '../fittrackee/dist/static'),
indexPath: '../index.html',
2021-08-04 09:26:49 +02:00
pluginOptions: {
i18n: {
locale: 'en',
fallbackLocale: 'en',
localeDir: 'locales',
enableLegacy: false,
runtimeOnly: false,
compositionOnly: false,
fullInstall: true,
},
},
2021-08-04 09:23:07 +02:00
}