diff --git a/.github/workflows/nextjs_bundle_analysis.yml b/.github/workflows/nextjs_bundle_analysis.yml index a723aa6..40486f5 100644 --- a/.github/workflows/nextjs_bundle_analysis.yml +++ b/.github/workflows/nextjs_bundle_analysis.yml @@ -56,7 +56,7 @@ jobs: with: name: bundle - path: .next/analyze/__bundle_analysis.json + path: ./apps/next-app/.next/analyze/__bundle_analysis.json - name: Download base branch bundle stats uses: dawidd6/action-download-artifact@v2 @@ -65,7 +65,7 @@ jobs: with: workflow: nextjs_bundle_analysis.yml branch: ${{ github.event.pull_request.base.ref }} - path: .next/analyze/base + path: ./apps/next-app/.next/analyze/base - name: Compare with base branch bundle if: success() && github.event.number diff --git a/apps/next-app/app/page.tsx b/apps/next-app/app/page.tsx index 69265d6..8c4ed6c 100644 --- a/apps/next-app/app/page.tsx +++ b/apps/next-app/app/page.tsx @@ -2,7 +2,6 @@ import Image from "next/image"; -import lodash from "lodash"; import styles from "./page.module.css"; export const dynamic = "force-dynamic"; @@ -20,7 +19,6 @@ export default function Home() { />
app/page.tsx
.