mirror of
https://github.com/blakeblackshear/frigate.git
synced 2025-12-06 13:34:13 +03:00
chore: i18n use cache key
This commit is contained in:
parent
e4eac4ac81
commit
e4bacc2e71
@ -189,7 +189,7 @@ RUN /build_pysqlite3.sh
|
|||||||
COPY docker/main/requirements-wheels.txt /requirements-wheels.txt
|
COPY docker/main/requirements-wheels.txt /requirements-wheels.txt
|
||||||
RUN pip3 wheel --wheel-dir=/wheels -r /requirements-wheels.txt && \
|
RUN pip3 wheel --wheel-dir=/wheels -r /requirements-wheels.txt && \
|
||||||
if [ "$DEBUG" = "true" ]; then \
|
if [ "$DEBUG" = "true" ]; then \
|
||||||
pip3 wheel --wheel-dir=/wheels -r /requirements-dev.txt; \
|
pip3 wheel --wheel-dir=/wheels -r /requirements-dev.txt; \
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Install HailoRT & Wheels
|
# Install HailoRT & Wheels
|
||||||
@ -318,6 +318,10 @@ FROM --platform=$BUILDPLATFORM node:20 AS web-build
|
|||||||
|
|
||||||
WORKDIR /work
|
WORKDIR /work
|
||||||
COPY web/package.json web/package-lock.json ./
|
COPY web/package.json web/package-lock.json ./
|
||||||
|
|
||||||
|
ARG GIT_COMMIT_HASH
|
||||||
|
ENV GIT_COMMIT_HASH=$GIT_COMMIT_HASH
|
||||||
|
|
||||||
RUN npm install
|
RUN npm install
|
||||||
|
|
||||||
COPY web/ ./
|
COPY web/ ./
|
||||||
|
|||||||
@ -33,7 +33,7 @@ i18n
|
|||||||
fallbackLng: "en", // use en if detected lng is not available
|
fallbackLng: "en", // use en if detected lng is not available
|
||||||
|
|
||||||
backend: {
|
backend: {
|
||||||
loadPath: "locales/{{lng}}/{{ns}}.json",
|
loadPath: `locales/{{lng}}/{{ns}}.json?v=${import.meta.env.GIT_COMMIT_HASH || "unknown"}`,
|
||||||
},
|
},
|
||||||
|
|
||||||
ns: [
|
ns: [
|
||||||
|
|||||||
@ -5,11 +5,12 @@ import react from "@vitejs/plugin-react-swc";
|
|||||||
import monacoEditorPlugin from "vite-plugin-monaco-editor";
|
import monacoEditorPlugin from "vite-plugin-monaco-editor";
|
||||||
|
|
||||||
const proxyHost = process.env.PROXY_HOST || "localhost:5000";
|
const proxyHost = process.env.PROXY_HOST || "localhost:5000";
|
||||||
|
const gitCommitHash = process.env.GIT_COMMIT_HASH || "unknown";
|
||||||
// https://vitejs.dev/config/
|
// https://vitejs.dev/config/
|
||||||
export default defineConfig({
|
export default defineConfig({
|
||||||
define: {
|
define: {
|
||||||
"import.meta.vitest": "undefined",
|
"import.meta.vitest": "undefined",
|
||||||
|
"import.meta.env.GIT_COMMIT_HASH": JSON.stringify(gitCommitHash),
|
||||||
},
|
},
|
||||||
server: {
|
server: {
|
||||||
proxy: {
|
proxy: {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user