diff --git a/front/apps/web/next.config.js b/front/apps/web/next.config.js index 12d4c490..4a0874b5 100755 --- a/front/apps/web/next.config.js +++ b/front/apps/web/next.config.js @@ -28,7 +28,6 @@ const suboctopus = path.resolve(path.dirname(require.resolve("jassub")), "../dis * @type {import("next").NextConfig} */ const nextConfig = { - swcMinify: true, // can't be true since we would run hls cleanup twice and run on race conditions reactStrictMode: false, output: "standalone", @@ -118,9 +117,7 @@ const nextConfig = { "expo-linear-gradient", "expo-image-picker", ], - experimental: { - outputFileTracingRoot: path.join(__dirname, "../../"), - }, + outputFileTracingRoot: path.join(__dirname, "../../"), }; if (process.env.NODE_ENV !== "production") { diff --git a/front/bun.lockb b/front/bun.lockb index 8bbdaaae..608fd930 100755 Binary files a/front/bun.lockb and b/front/bun.lockb differ diff --git a/front/packages/primitives/package.json b/front/packages/primitives/package.json index ec8bf0ba..c5d115ee 100644 --- a/front/packages/primitives/package.json +++ b/front/packages/primitives/package.json @@ -23,7 +23,7 @@ "yoshiki": "*" }, "dependencies": { - "@expo/html-elements": "^0.10.1", + "@expo/html-elements": "^0.11.0", "@tanstack/react-query": "^5.59.16", "solito": "^4.2.2" } diff --git a/front/packages/primitives/src/image/image.tsx b/front/packages/primitives/src/image/image.tsx index a2bdcf8f..6b518870 100644 --- a/front/packages/primitives/src/image/image.tsx +++ b/front/packages/primitives/src/image/image.tsx @@ -18,7 +18,7 @@ * along with Kyoo. If not, see . */ -import { type ReactElement } from "react"; +import type { ReactElement } from "react"; import { type ImageStyle, View, type ViewStyle } from "react-native"; import { Image as ExpoImage } from "expo-image"; import { useYoshiki } from "yoshiki/native"; @@ -47,7 +47,7 @@ export const Image = ({ placeholder={{ blurhash: src.blurhash }} source={src[quality ?? "high"]} recyclingKey={src.high} - {...css([layout, border])} + {...(css([layout, border]) as any)} /> ); };