Adrien Foulon
Adrien Foulon
I need to check why the tests are failing, only the Web tests are failing, it seems due to a js error, how can I debug this (in a normal...
Ah thanks that's very helpful, so weird though that I'm not getting any error myself when it's in the main.blade.php template
Okay I know why, it's because TwillBlocks is registered in the aliases in composer.json, but aliases are not applied when running the tests locally
@ifox I see, yes it would be nice, much like a "Draft" feature on a block basis
```css .carousel__slide { opacity: 0; transition: opacity .3s step-end; } .carousel__slide--active { opacity: 1; transition-timing-function: ease; } .carousel__track { transition: none !important; } ```
Still getting `[webpack-cli] Error: Conflict: Multiple chunks emit assets to the same filename public/css/vuetify.css (chunks css/app and js/vue)` anybody got a workaround?
After much struggle, it seems the issue is caused when you add `.sass('resources/sass/app.scss', 'public/css')` The problem being that the extract name is not respected ``` .vuetify('vuetify-loader', { extract: 'css/vuetify.css', })...
So the problem is caused because there is 2 MiniCssExtract plugin, the second addition is not needed, there should be a check, if it's already present in the plugins list...
I added the repro, the issue on stackblitz is in the tsconfig ``` "../../zzmiozx/runtime", "../../zzmiozx/dist/runtime", ```
I rolled my own pagination component to achieve this ```vue const config /*: CarouselConfig*/ = inject('config'); const slidesCount = inject('slidesCount'); const currentSlide = inject('currentSlide'); const maxSlide = inject('maxSlide'); const nav...