Files
Cli-Proxy-API-Management-Ce…/vite.config.ts

79 lines
1.8 KiB
TypeScript

import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
import { viteSingleFile } from 'vite-plugin-singlefile';
import path from 'path';
import { execSync } from 'child_process';
import fs from 'fs';
// Get version from environment, git tag, or package.json
function getVersion(): string {
// 1. Environment variable (set by GitHub Actions)
if (process.env.VERSION) {
return process.env.VERSION;
}
// 2. Try git tag
try {
const gitTag = execSync('git describe --tags --exact-match 2>/dev/null || git describe --tags 2>/dev/null || echo ""', { encoding: 'utf8' }).trim();
if (gitTag) {
return gitTag;
}
} catch {
// Git not available or no tags
}
// 3. Fall back to package.json version
try {
const pkg = JSON.parse(fs.readFileSync(path.resolve(__dirname, 'package.json'), 'utf8'));
if (pkg.version && pkg.version !== '0.0.0') {
return pkg.version;
}
} catch {
// package.json not readable
}
return 'dev';
}
// https://vitejs.dev/config/
export default defineConfig({
plugins: [
react(),
viteSingleFile({
removeViteModuleLoader: true
})
],
define: {
__APP_VERSION__: JSON.stringify(getVersion())
},
resolve: {
alias: {
'@': path.resolve(__dirname, './src')
}
},
css: {
modules: {
localsConvention: 'camelCase',
generateScopedName: '[name]__[local]___[hash:base64:5]'
},
preprocessorOptions: {
scss: {
additionalData: `@use "@/styles/variables.scss" as *;`
}
}
},
build: {
target: 'es2015',
outDir: 'dist',
assetsInlineLimit: 100000000,
chunkSizeWarningLimit: 100000000,
cssCodeSplit: false,
rollupOptions: {
output: {
inlineDynamicImports: true,
manualChunks: undefined
}
}
}
});