diff --git a/apps/readest-app/next.config.mjs b/apps/readest-app/next.config.mjs
index 3220a3ea..e321072d 100644
--- a/apps/readest-app/next.config.mjs
+++ b/apps/readest-app/next.config.mjs
@@ -13,10 +13,6 @@ if (isDev) {
const exportOutput = appPlatform !== 'web' && !isDev;
-const bundleAnalyzer = withBundleAnalyzer({
- enabled: process.env.ANALYZE === 'true',
-});
-
/** @type {import('next').NextConfig} */
const nextConfig = {
// Ensure Next.js uses SSG instead of SSR
@@ -75,4 +71,8 @@ const withPWA = withPWAInit({
},
});
-export default withPWA(bundleAnalyzer(nextConfig));
+const withAnalyzer = withBundleAnalyzer({
+ enabled: process.env.ANALYZE === 'true',
+});
+
+export default withPWA(withAnalyzer(nextConfig));
diff --git a/apps/readest-app/src/app/auth/page.tsx b/apps/readest-app/src/app/auth/page.tsx
index 68009bee..b5f9732f 100644
--- a/apps/readest-app/src/app/auth/page.tsx
+++ b/apps/readest-app/src/app/auth/page.tsx
@@ -334,66 +334,82 @@ export default function AuthPage() {
return isTauriAppPlatform() ? (
-
+
+
- {appService?.hasWindowBar && (
-
+ )}
+
+
-
) : (
diff --git a/apps/readest-app/src/app/user/components/Header.tsx b/apps/readest-app/src/app/user/components/Header.tsx
index 53e9e7c9..017108d7 100644
--- a/apps/readest-app/src/app/user/components/Header.tsx
+++ b/apps/readest-app/src/app/user/components/Header.tsx
@@ -22,7 +22,10 @@ const ProfileHeader: React.FC = ({ onGoBack }) => {
appService?.hasTrafficLight && 'pt-11',
)}
>
-