mirror of
https://github.com/YunoHost/yunohost-admin.git
synced 2024-09-03 20:06:15 +02:00
74 lines
1.3 KiB
JavaScript
74 lines
1.3 KiB
JavaScript
const webpack = require('webpack')
|
|
|
|
const dateFnsLocales = [
|
|
'ar',
|
|
'bn', // for 'bn_BD'
|
|
'ca', // for 'ca' & 'oc'
|
|
'cs',
|
|
'de',
|
|
'el',
|
|
'en-GB', // for 'en' & 'ne'
|
|
'eo',
|
|
'es',
|
|
'eu',
|
|
'fa',
|
|
'fi',
|
|
'fr', // for 'fr' & 'br'
|
|
'gl',
|
|
'hi',
|
|
'hu',
|
|
'it',
|
|
'nb', // for 'nb_NO'
|
|
'nl',
|
|
'oc',
|
|
'pl',
|
|
'pt',
|
|
'ru',
|
|
'sv',
|
|
'tr',
|
|
'uk',
|
|
'zh_CN' // for 'zh_Hans'
|
|
]
|
|
|
|
module.exports = {
|
|
configureWebpack: {
|
|
plugins: [
|
|
// Will limit the available locales so webpack won't generate chunks for every
|
|
// locales found in `date-fns/locales/` but only those listed.
|
|
new webpack.ContextReplacementPlugin(
|
|
/date-fns[/\\]/,
|
|
new RegExp(`[/\\\\](${dateFnsLocales.join('|')})[/\\\\]index.js$`)
|
|
)
|
|
]
|
|
},
|
|
pluginOptions: {
|
|
i18n: {
|
|
locale: 'en',
|
|
fallbackLocale: 'en',
|
|
localeDir: 'src/i18n/locales',
|
|
enableInSFC: false
|
|
}
|
|
},
|
|
css: {
|
|
loaderOptions: {
|
|
sass: {
|
|
prependData: '@import "@/scss/_variables.scss";'
|
|
}
|
|
}
|
|
},
|
|
publicPath: '/yunohost/admin',
|
|
devServer: {
|
|
https: false,
|
|
disableHostCheck: true,
|
|
proxy: {
|
|
'^/yunohost': {
|
|
target: `http://${process.env.VUE_APP_IP}`,
|
|
ws: true,
|
|
logLevel: 'info'
|
|
}
|
|
},
|
|
watchOptions: {
|
|
ignored: /node_modules/
|
|
}
|
|
}
|
|
}
|