Deployment error

Hi, I am getting an eror when trying to deploy my strapi project to cloud.

This is the error:

I have no idea why it is complaining about tailwind not being installed, since it is (in my root package.json, which is the frontend portion of my project) I would assume for my strapi project (subfolder) I don’t need strapi installed?

This topic has been created from a Discord post (1264965022610882633) to give it more visibility.
It will be on Read-Only mode here.
Join the conversation on Discord

Here is my root level package.json :

{
  "name": "shop.achiscaffolding.com",
  "version": "0.1.0",
  "private": true,
  "scripts": {
    "dev": "next dev",
    "build": "next build",
    "start": "node server.js",
    "lint": "next lint"
  },
  "dependencies": {
    "@emotion/react": "^11.11.4",
    "@emotion/styled": "^11.11.5",
    "@headlessui/react": "^2.1.2",
    "@mui/material": "^5.16.4",
    "@strapi/plugin-cloud": "^4.10.5",
    "@strapi/plugin-i18n": "^4.10.5",
    "@strapi/plugin-users-permissions": "^4.10.5",
    "@strapi/strapi": "^4.10.5",
    "axios": "^1.7.2",
    "bcryptjs": "^2.4.3",
    "better-sqlite3": "^7.4.3",
    "dotenv": "^16.4.5",
    "emailjs-com": "^3.2.0",
    "js-cookie": "^3.0.5",
    "jsonwebtoken": "^9.0.2",
    "mysql2": "^3.10.2",
    "next": "14.2.4",
    "next-auth": "^4.24.7",
    "next-connect": "^1.0.0",
    "nodemailer": "^6.9.14",
    "pg": "^8.12.0",
    "pg-hstore": "^2.3.4",
    "react": "^18",
    "react-dom": "^18"
  },
  "devDependencies": {
    "autoprefixer": "^10.4.19",
    "eslint": "^8",
    "eslint-config-next": "14.2.4",
    "postcss": "^8.4.39",
    "tailwindcss": "^3.4.6"
  }
}

here is the strapi app package.json:

{
  "name": "shop-achiscaffolding-cms",
  "private": true,
  "version": "0.1.0",
  "description": "A Strapi application",
  "scripts": {
    "develop": "strapi develop",
    "start": "strapi start",
    "build": "strapi build",
    "strapi": "strapi",
    "deploy": "strapi deploy"
  },
  "dependencies": {
    "@strapi/strapi": "^4.10.5",
    "@strapi/plugin-i18n": "^4.10.5",
    "@strapi/plugin-users-permissions": "^4.10.5",
    "@strapi/plugin-cloud": "^4.10.5",
    "better-sqlite3": "8.6.0",
    "mysql": "^2.18.1",
    "react": "^18.0.0",
    "react-dom": "^18.0.0",
    "react-router-dom": "5.3.4",
    "styled-components": "5.3.3"
  },
  "author": {
    "name": "Hanna Rosenfeld"
  },
  "strapi": {
    "uuid": "8e145640-7f0f-4252-b50e-ebb741ff2321"
  },
  "engines": {
    "node": ">=18.0.0 <=20.x.x",
    "npm": ">=6.0.0"
  },
  "license": "MIT"
}