Tailwind Cli and custom CSS not applying on CF pages

For Workers & Pages, what is the name of the domain?

https://medigital.pages.dev/

What is the error number?

No error number just css is not loading

What is the error message?

no error message

What is the issue or error you’re encountering

I have a static site built using html css and little bit of js Im using tailwind cli but the styling is not applying on deployment on CF pages, I connected my github repository to cf

What steps have you taken to resolve the issue?

I deployed the same website on Github pages and its fine all style are applying

You’ve left the codded part from your development process to ../output.css and ../style.css which unfortunately cannot load the needed CSS resource since it doesn’t exist on the pages.dev domain for your medigital.pages.dev:

<link rel="stylesheet" href="../output.css" />
<link rel="stylesheet" href="../style.css" />

A quick fix would be to make sure the output.css and style.css file is in the correct structure-level where your index.html is when you’re uploading or deploying to your Pages project.