i18n
CI/CD Pipeline / Build and Push PocketBase Docker Image (push) Successful in 8s
CI/CD Pipeline / i18n Catalog Check (push) Failing after 10s
CI/CD Pipeline / Build and Push App Docker Image (push) Skipped
CI/CD Pipeline / Deploy to Kubernetes (push) Skipped

This commit is contained in:
yohlo
2026-08-08 15:29:40 -07:00
parent 22c282d8fa
commit 0a7b5fa00f
178 changed files with 13099 additions and 1285 deletions
+8 -1
View File
@@ -2,6 +2,7 @@ import { tanstackStart } from '@tanstack/react-start/plugin/vite'
import { defineConfig } from 'vite'
import tsConfigPaths from 'vite-tsconfig-paths'
import react from '@vitejs/plugin-react';
import { lingui } from '@lingui/vite-plugin';
export default defineConfig(({ mode }) => ({
server: {
@@ -18,9 +19,15 @@ export default defineConfig(({ mode }) => ({
tanstackStart({
srcDirectory: 'src/app',
}),
lingui(),
react({
babel: {
plugins: ['babel-plugin-react-compiler'],
plugins: [
// lingui must run before react-compiler: the compiler's memoization
// rewrites JSX in ways the macro can no longer transform
'@lingui/babel-plugin-lingui-macro',
'babel-plugin-react-compiler',
],
},
}),
]