2024-02-24 18:25:12 +01:00
|
|
|
import { fileURLToPath, URL } from 'url'
|
2023-04-03 22:14:18 +02:00
|
|
|
import { defineConfig, loadEnv } from 'vite'
|
|
|
|
import fs from 'fs'
|
2024-03-03 18:08:10 +01:00
|
|
|
import createVuePlugin from '@vitejs/plugin-vue'
|
2023-04-03 22:14:18 +02:00
|
|
|
|
2024-03-04 03:31:24 +01:00
|
|
|
import supportedLocales from './src/i18n/supportedLocales'
|
|
|
|
|
|
|
|
const supportedDatefnsLocales = Object.entries(supportedLocales).map(
|
|
|
|
([locale, { dateFnsLocale }]) => {
|
|
|
|
return dateFnsLocale || locale
|
|
|
|
},
|
|
|
|
)
|
|
|
|
|
2023-04-03 22:14:18 +02:00
|
|
|
export default defineConfig(({ command, mode }) => {
|
|
|
|
// Load env file based on `mode` in the current working directory.
|
|
|
|
// Set the third parameter to '' to load all env regardless of the `VITE_` prefix.
|
|
|
|
const env = loadEnv(mode, process.cwd())
|
|
|
|
|
|
|
|
const config = {
|
|
|
|
define: {
|
|
|
|
// fake process.env for some deps
|
2024-02-24 18:25:12 +01:00
|
|
|
'process.env': {},
|
2023-04-03 22:14:18 +02:00
|
|
|
},
|
2024-02-24 18:25:12 +01:00
|
|
|
resolve: {
|
|
|
|
alias: [
|
2024-03-03 18:08:10 +01:00
|
|
|
{ find: 'vue', replacement: '@vue/compat' },
|
2023-04-03 22:14:18 +02:00
|
|
|
// this is required for the SCSS modules imports with `~` (node_modules)
|
|
|
|
{ find: /^~(.*)$/, replacement: '$1' },
|
2024-02-24 18:25:12 +01:00
|
|
|
{
|
|
|
|
find: '@',
|
|
|
|
replacement: fileURLToPath(new URL('./src', import.meta.url)),
|
|
|
|
},
|
|
|
|
],
|
2023-04-03 22:14:18 +02:00
|
|
|
},
|
|
|
|
css: {
|
|
|
|
preprocessorOptions: {
|
|
|
|
scss: {
|
|
|
|
// To auto inject scss variables into componentns scope
|
|
|
|
additionalData: `
|
|
|
|
@import "@/scss/_variables.scss";
|
2024-02-24 18:25:12 +01:00
|
|
|
`,
|
|
|
|
},
|
|
|
|
},
|
2023-04-03 22:14:18 +02:00
|
|
|
},
|
2024-03-03 18:08:10 +01:00
|
|
|
plugins: [
|
|
|
|
createVuePlugin({
|
|
|
|
template: {
|
|
|
|
compilerOptions: {
|
|
|
|
compatConfig: {
|
|
|
|
MODE: 2,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}),
|
|
|
|
],
|
2023-04-03 22:14:18 +02:00
|
|
|
build: {
|
|
|
|
rollupOptions: {
|
|
|
|
output: {
|
|
|
|
manualChunks: (id) => {
|
|
|
|
// Circular import problems, this will merge vue/vuex/etc. and api together
|
|
|
|
if (!id.includes('node_modules') && id.includes('api/')) {
|
2024-02-24 18:25:12 +01:00
|
|
|
return 'core'
|
2023-04-03 22:14:18 +02:00
|
|
|
}
|
2024-03-04 03:31:24 +01:00
|
|
|
// Translations
|
|
|
|
if (id.includes('locales')) {
|
|
|
|
const match = /.*\/i18n\/locales\/([\w-]+)\.json/.exec(id)
|
|
|
|
return `locales/${match[1]}/translations`
|
|
|
|
}
|
|
|
|
// Split date-fns locales
|
|
|
|
if (id.includes('date-fns')) {
|
|
|
|
const match = /.*\/date-fns\/esm\/locale\/([\w-]+)\/.*\.js/.exec(
|
|
|
|
id,
|
|
|
|
)
|
|
|
|
if (match) {
|
|
|
|
if (supportedDatefnsLocales.includes(match[1])) {
|
|
|
|
return `locales/${match[1]}/date-fns`
|
|
|
|
} else {
|
|
|
|
// FIXME: currently difficult to cherry pick only needed locales,
|
|
|
|
// hopefully this chunk should not be fetched.
|
|
|
|
return 'locales/not-used'
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return 'date-fns'
|
|
|
|
}
|
|
|
|
}
|
2024-02-24 18:25:12 +01:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2023-04-03 22:14:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (mode === 'production') {
|
|
|
|
return {
|
|
|
|
...config,
|
|
|
|
base: '/yunohost/admin',
|
|
|
|
}
|
|
|
|
} else if (mode === 'development') {
|
|
|
|
return {
|
|
|
|
...config,
|
|
|
|
server: {
|
|
|
|
port: 8080,
|
|
|
|
host: env.VITE_IP,
|
|
|
|
https: {
|
|
|
|
// Use already created cert from yunohost instance
|
|
|
|
key: fs.readFileSync('/etc/yunohost/certs/yunohost.org/key.pem'),
|
|
|
|
cert: fs.readFileSync('/etc/yunohost/certs/yunohost.org/crt.pem'),
|
|
|
|
},
|
|
|
|
fs: {
|
|
|
|
// Needed for special ynh-dev context where node_modules is symlinked
|
|
|
|
allow: [
|
|
|
|
'/ynh-dev/yunohost-admin/app',
|
2024-02-24 18:25:12 +01:00
|
|
|
'/var/cache/ynh-dev/yunohost-admin/node_modules',
|
|
|
|
],
|
2023-04-03 22:14:18 +02:00
|
|
|
},
|
|
|
|
proxy: {
|
|
|
|
'/yunohost': {
|
|
|
|
target: `https://${env.VITE_IP}`,
|
|
|
|
ws: true,
|
|
|
|
logLevel: 'info',
|
|
|
|
secure: false,
|
|
|
|
},
|
|
|
|
},
|
2024-02-24 18:25:12 +01:00
|
|
|
},
|
2023-04-03 22:14:18 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|