- Replace all Jumble branding with Smesh throughout codebase - Add new Smesh logo images (light/dark themes) - Update Logo component to use PNG images with theme support - Update URLs to git.mleku.dev/mleku/smesh - Rename JumbleTranslate to SmeshTranslate - Update all i18n locale files with new branding - Add system theme detection CSS to prevent flash on load - Update PWA manifest, docker-compose, and config files 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
97 lines
2.3 KiB
TypeScript
97 lines
2.3 KiB
TypeScript
import react from '@vitejs/plugin-react'
|
|
import { execSync } from 'child_process'
|
|
import path from 'path'
|
|
import { defineConfig } from 'vite'
|
|
import { VitePWA } from 'vite-plugin-pwa'
|
|
import packageJson from './package.json'
|
|
|
|
const getGitHash = () => {
|
|
try {
|
|
return JSON.stringify(execSync('git rev-parse --short HEAD').toString().trim())
|
|
} catch (error) {
|
|
console.warn('Failed to retrieve commit hash:', error)
|
|
return '"unknown"'
|
|
}
|
|
}
|
|
|
|
const getAppVersion = () => {
|
|
try {
|
|
return JSON.stringify(packageJson.version)
|
|
} catch (error) {
|
|
console.warn('Failed to retrieve app version:', error)
|
|
return '"unknown"'
|
|
}
|
|
}
|
|
|
|
// https://vite.dev/config/
|
|
export default defineConfig({
|
|
server: {
|
|
allowedHosts: ['smesh.mleku.dev']
|
|
},
|
|
define: {
|
|
'import.meta.env.GIT_COMMIT': getGitHash(),
|
|
'import.meta.env.APP_VERSION': getAppVersion()
|
|
},
|
|
resolve: {
|
|
alias: {
|
|
'@': path.resolve(__dirname, './src')
|
|
}
|
|
},
|
|
plugins: [
|
|
react(),
|
|
VitePWA({
|
|
registerType: 'autoUpdate',
|
|
workbox: {
|
|
globPatterns: ['**/*.{js,css,html,png,jpg,svg}'],
|
|
globDirectory: 'dist/',
|
|
maximumFileSizeToCacheInBytes: 5 * 1024 * 1024,
|
|
cleanupOutdatedCaches: true
|
|
},
|
|
devOptions: {
|
|
enabled: true
|
|
},
|
|
manifest: {
|
|
name: 'Smesh',
|
|
short_name: 'Smesh',
|
|
icons: [
|
|
{
|
|
src: '/pwa-512x512.png',
|
|
sizes: '512x512',
|
|
type: 'image/png',
|
|
purpose: 'any'
|
|
},
|
|
{
|
|
src: '/pwa-192x192.png',
|
|
sizes: '192x192',
|
|
type: 'image/png',
|
|
purpose: 'any'
|
|
},
|
|
{
|
|
src: '/pwa-512x512.png',
|
|
sizes: '512x512',
|
|
type: 'image/png',
|
|
purpose: 'maskable'
|
|
},
|
|
{
|
|
src: '/pwa-192x192.png',
|
|
sizes: '192x192',
|
|
type: 'image/png',
|
|
purpose: 'maskable'
|
|
},
|
|
{
|
|
src: '/pwa-monochrome.svg',
|
|
sizes: '512x512',
|
|
type: 'image/svg+xml',
|
|
purpose: 'monochrome'
|
|
}
|
|
],
|
|
start_url: '/',
|
|
display: 'standalone',
|
|
background_color: '#171717',
|
|
theme_color: '#171717',
|
|
description: packageJson.description
|
|
}
|
|
})
|
|
]
|
|
})
|