I am trying to generate css code by compiling tailwind base, components and utilities to develop Shopify theme.
Below is my files.
tailwind.config.json
module.exports = {
content: ["./src/**/*.{html,js}"],
theme: {
extend: {},
},
plugins: [],
}
application.css
@tailwind base;
@tailwind components;
@tailwind utilities;
Executing below code:
npx tailwindcss build -i src/styles/application.css -o src/styles/tailwind.css
Screenshot as Below
terminal screenshot after running above code
Please let me know for more information on this issue.
Thanks in Advance.