Niush Sitaula

Results 5 comments of Niush Sitaula

This is my bad solution: First the extension adds a hidden Alpine initialized field in the body. It will watch changes in `$store` and sets `$store._devtools_stores` with the updated `$store`...

Some attributes seems to be required for table, th and td. This is the solution: `'HTML.Allowed' => 'table[summary],th[abbr],tr,tbody,td[abbr]'`

**EDIT:** _This solution, only worked for short time. Stopped working again._ For me manually adding this to the top of `assets/css/tailwind.css` helped: ```css @tailwind base; @tailwind components; @tailwind utilities; ```

Instead of importing `hightlight.js` everywhere and potentially getting eslint's unused vars warning. We can add this to `vite.config.js` file: ```js // ... optimizeDeps: { include: ['highlight.js'] } ```

Just had the same issue. It's because somehow the bash file end-of-line got changed to CRLF. (`start-container`, `healthcheck`, etc.) I was manually creating files and copying the text, so it...