A New Collection of Thoughtful Learning Apps — Now Available on iOS & Android

Image
I’m excited to share a set of mobile apps I’ve recently completed and published on both the Google Play Store and the Apple App Store. These apps are designed with a simple goal in mind: to make meaningful, structured content more accessible, whether you’re studying theology or improving your English vocabulary. 📱 Now Available on Both Platforms All apps are live and available for download: Google Play Developer Page: https://play.google.com/store/apps/dev?id=5835943159853189043 Apple App Store Developer Page: https://apps.apple.com/ca/developer/q-z-l-corp/id1888794100 📖 Theology & Confession Study Apps For those interested in Reformed theology and classical Christian teachings, I’ve developed a series of apps that present foundational texts in a clean, focused reading format: The Belgic Confession Canons of Dort Heidelberg Catechism Westminster Shorter Catechism Each app is designed to provide a distraction-free experience, making it easier to read, reflect, and revisit these im...

Deploying Your Next.js App with PNPM to Vercel

Deploy Your Next.js App with PNPM to Vercel

Using pnpm instead of npm or yarn in Next.js requires an extra step when deploying to Vercel: enabling Corepack. Here’s how to do it smoothly.

Step 1: Enable Corepack

Corepack ensures pnpm commands work in your build environment. Run these commands locally:

corepack enable
corepack prepare pnpm@latest --activate

This ensures pnpm is available both locally and in Vercel’s cloud builds.

Step 2: Build your Next.js app

Run the following commands to install dependencies and build your project:

pnpm install
pnpm build

Make sure pnpm build works locally before deploying.

Step 3: Deploy to Vercel

1. Sign in to Vercel and import your Git repo.



2. Set the Install Command to:

pnpm install

3. Set the Build Command to:

pnpm build

4. Deploy the project — Vercel will use Corepack to run pnpm automatically.

Step 4: Tips for Success

  • Ensure Node 18+ is selected in Vercel’s Environment Settings.
  • Commit pnpm-lock.yaml to your repo so Vercel knows all dependencies.
  • Test pnpm build locally before deploying to catch any errors early.

Conclusion

Deploying a Next.js app with pnpm on Vercel is seamless once Corepack is enabled. You can now enjoy pnpm’s speed and efficiency without deployment issues.

Tip: Click on any command block to copy it instantly!

❤️ Support This Blog


If this post helped you, you can support my writing with a small donation. Thank you for reading.


Comments

Popular Posts

2026 Begins: Choosing to Stay on the Path as a Blogger

A New Collection of Thoughtful Learning Apps — Now Available on iOS & Android