📦Laravel-Modules Style
To config with Laravel-Modules package
Tailwindcss Styling Config
Add ./vendor/sophat/elements/src/view/*.blade.php
inside content
to compiling style from package.
const path = require('path');
content: [
...
path.join(__dirname, "../../vendor/turbotech/**/src/views/*.blade.php"),
path.join(__dirname, "../../vendor/turbotech/**/src/views/**/*.blade.php"),
path.join(__dirname, "../../vendor/turbotech/**/src/views/**/**/*.blade.php"),
path.join(__dirname, "../../vendor/turbotech/**/src/views/**/**/**/*.blade.php")
]
then compile css with Tailwindcss
npm run watch
Last updated
Was this helpful?