I'm encountering an issue with my style.css file while running the 'npm build:css' command in my node/express js project. This is causing the tailwind css to not be applied to my views. Can anyone help me understand why this is happening?
npm build:css
Here is a snippet from my package.json file:
{
"build:css": "npx tailwindcss-cli@latest build -i ./public/stylesheets/tailwind.css -o ./public/stylesheets/style.css"
}
The starting portion of my style.css looks like this:
/*! tailwindcss v2.2.19 | MIT License | https://tailwindcss.com */
/*! modern-normalize v1.1.0 | MIT License | https://github.com/sindresorhus/modern-normalize */
/*
Document
========
*/
/**
Use a better box model (opinionated).
*/
*,
::before,
::after {
box-sizing: border-box;
}