Philip Theobald

Results 31 comments of Philip Theobald

> I got it working after installing `laravel-mix-tailwind` and using it this way in my `webpack.config.js` > > ```js > require('laravel-mix-tailwind') > > mix.postCss('resources/css/app.css', 'public/css', [ > require('tailwindcss')('./tailwind.config.js') > ]).tailwind()...

@ShekhSaifuddin007 Are you able to install laravel-mix-tailwind on a Laravel 8 project? I'm getting a conflicting peer dependency when I try (posted above). This seems to be the culprit. https://github.com/JeffreyWay/laravel-mix-tailwind/blob/master/package.json...

@anotherglitchinthematrix Created `./postcss.config.js` with the contents below... didn't make a difference. Same error. ``` module.exports = { plugins: { tailwindcss: {}, autoprefixer: {}, } } ```

> @ShekhSaifuddin007 Are you able to install laravel-mix-tailwind on a Laravel 8 project? I'm getting a conflicting peer dependency when I try (posted above). > > This seems to be...

@Aiwings Thanks for the response. I was also able to get the image loaded by doing this: ``` ``` Both of these solutions feel kinda ugly to me tbh.

@tinyfly I finally got around to implementing your solution and it works great! Thank you for that and for linking to the issue in vue-loader.

@321zeno Implemented your solution, works great!

@321zeno This solution randomly stopped working for me today. I initially thought this was due to Laravel Mix updating from 6.0.31 to 6.0.39 but reverting didn't seem to help. I...

Just FYI, this is a side-effect of the input being marked as "READONLY". Remove that tag and it fixes the emit problem. Closed/Opened/Selected all work when the input does not...

Ok, I think I figured it out. There is a prop you can pass called "typeable". That will remove "readonly" from the input field, which fixes this problem as well...