mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2025-08-20 13:33:06 +00:00
140 lines
3.9 KiB
TypeScript
140 lines
3.9 KiB
TypeScript
import { readdirSync } from 'node:fs';
|
|
import path from 'node:path';
|
|
import process from 'node:process';
|
|
import VueI18nPlugin from '@intlify/unplugin-vue-i18n/vite';
|
|
import tailwindcss from '@tailwindcss/vite';
|
|
import vue from '@vitejs/plugin-vue';
|
|
import dotenv from 'dotenv';
|
|
import type { Plugin } from 'vite';
|
|
import prismjs from 'vite-plugin-prismjs';
|
|
import svgLoader from 'vite-svg-loader';
|
|
import type { ViteUserConfig } from 'vitest/config';
|
|
import { defineConfig } from 'vitest/config';
|
|
|
|
dotenv.config({ path: path.resolve(__dirname, '../.env'), quiet: true });
|
|
|
|
const getEnvString = (envVar: string | undefined) => (envVar != null && envVar !== '' ? envVar : undefined);
|
|
const viteUserSessCookie = getEnvString(process.env.VITE_DEV_USER_SESS_COOKIE);
|
|
const viteDevProxy = getEnvString(process.env.VITE_DEV_PROXY);
|
|
|
|
function woodpeckerInfoPlugin(): Plugin {
|
|
return {
|
|
name: 'woodpecker-info',
|
|
configureServer() {
|
|
if (viteDevProxy !== undefined) {
|
|
console.log(
|
|
[
|
|
`Using dev server with proxy to existing Woodpecker server running at: ${viteDevProxy}`,
|
|
'\n 🚀 Access the UI at http://localhost:8010/',
|
|
].join('\n'),
|
|
);
|
|
return;
|
|
}
|
|
|
|
console.log(
|
|
[
|
|
'1) Please add `WOODPECKER_DEV_WWW_PROXY=http://localhost:8010` to your `.env` file.',
|
|
'2) Start the Woodpecker server',
|
|
'3) If you want to run the vite dev server (`pnpm start`) within a container please set `VITE_DEV_SERVER_HOST=0.0.0.0`.',
|
|
`\n 🚀 Access the UI at http://localhost:8000/`,
|
|
].join('\n'),
|
|
);
|
|
},
|
|
};
|
|
}
|
|
|
|
function externalCSSPlugin(): Plugin {
|
|
return {
|
|
name: 'external-css',
|
|
transformIndexHtml: {
|
|
order: 'post',
|
|
handler() {
|
|
return [
|
|
{
|
|
tag: 'link',
|
|
attrs: { rel: 'stylesheet', type: 'text/css', href: '/assets/custom.css' },
|
|
injectTo: 'head',
|
|
},
|
|
];
|
|
},
|
|
},
|
|
};
|
|
}
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [
|
|
vue(),
|
|
VueI18nPlugin({
|
|
include: path.resolve(__dirname, 'src/assets/locales/**'),
|
|
}),
|
|
(() => {
|
|
const virtualModuleId = 'virtual:vue-i18n-supported-locales';
|
|
const resolvedVirtualModuleId = `\0${virtualModuleId}`;
|
|
|
|
const filenames = readdirSync('src/assets/locales/').map((filename) => filename.replace('.json', ''));
|
|
|
|
return {
|
|
name: 'vue-i18n-supported-locales',
|
|
|
|
resolveId(id) {
|
|
if (id === virtualModuleId) {
|
|
return resolvedVirtualModuleId;
|
|
}
|
|
},
|
|
|
|
load(id) {
|
|
if (id === resolvedVirtualModuleId) {
|
|
return `export const SUPPORTED_LOCALES = ${JSON.stringify(filenames)}`;
|
|
}
|
|
},
|
|
};
|
|
})(),
|
|
svgLoader(),
|
|
externalCSSPlugin(),
|
|
woodpeckerInfoPlugin(),
|
|
prismjs({
|
|
languages: ['yaml'],
|
|
}),
|
|
tailwindcss(),
|
|
],
|
|
resolve: {
|
|
alias: {
|
|
'~/': `${path.resolve(__dirname, 'src')}/`,
|
|
},
|
|
},
|
|
logLevel: 'warn',
|
|
server: {
|
|
allowedHosts: true,
|
|
host: process.env.VITE_DEV_SERVER_HOST ?? '127.0.0.1',
|
|
port: 8010,
|
|
proxy:
|
|
viteDevProxy !== undefined
|
|
? {
|
|
'/api': {
|
|
target: viteDevProxy,
|
|
changeOrigin: true,
|
|
headers: {
|
|
cookie: viteUserSessCookie !== undefined ? `user_sess=${viteUserSessCookie}` : '',
|
|
},
|
|
},
|
|
'/web-config.js': {
|
|
target: viteDevProxy,
|
|
changeOrigin: true,
|
|
headers: {
|
|
cookie: viteUserSessCookie !== undefined ? `user_sess=${viteUserSessCookie}` : '',
|
|
},
|
|
},
|
|
'/authorize': {
|
|
target: viteDevProxy,
|
|
changeOrigin: true,
|
|
},
|
|
}
|
|
: undefined,
|
|
},
|
|
test: {
|
|
globals: true,
|
|
environment: 'jsdom',
|
|
},
|
|
} as ViteUserConfig);
|