Robert Reinhard
Robert Reinhard
Btw, this package is working for me so far with yarn workspaces. Here's my `cypress/plugins/index.js`: ```js const cypressNuxt = require("cypress-nuxt") const path = require('path') module.exports = function (on, config) {...
I do prefer the non-`devMode` behavior for the reasons that @stereomyth mentions. It allows me to make reusable fragments that use a generic type of `EntryInterface` which can be spread...
As a workaround, you can do: ``` haml :php $code = "var msg='hi';"; %script(type="text/javascript") :plain // Other JS code :php echo $code; :plain // More JS code ```
@mendelk I made a seperate issue for what you are referring to here: #95
What kind of issues did you run into?
> Anyone using this with nuxt currently? It's working with me when imported into another component like this: ```js import spinner from 'vue-simple-spinner/src/components/Spinner.vue' ```
FWIW, I do like that Flickity doesn't create new cells with its implementation of `wrapAround` (unlike Owl's `loop`, for instance). It makes it easier to integrate with component frameworks (Vue,...
Yeah, I'm open to that PR. Do you know if `Container::getInstance()` will return in the App instance in Laravel?
You could use the `onCloning()` handler or the events Cloner fires to add logic that would copy the relationships on your many to many.
The `variables` property worked for me, btw: ```js gtm: { id: 'GTM-xxxx', variables: { gtm_auth: 'xxxx', gtm_preview: 'xxxx', gtm_cookies_win: 'xxxx', } } ```