Davide Rossi
Davide Rossi
I'm using `nuxt 1.4.2` and `webpack 3.12.0`. I tried both with the "local" import inside the component, or using global plugin. I have no problem at all using the ``...
I can confirm the @podlebar solution is working with [email protected] and [email protected], but I still see an error on server side: > ERROR [Vue warn]: Failed to resolve async component:...
> ```js > components: { > Carousel: () => process.browser ? import('vue-carousel').then(m => m.Carousel) : null, > Slide: () => process.browser ? import('vue-carousel').then(m => m.Slide) : null > } >...
I'm using a method similar to @fabiofdsantos, but if you want to actually use `@nuxtjs/fontawesome` I think you should set `'FontAwesomeIcon'` as the Buefy `defaultIconComponent`. This is my working minimal...
Braintree no longer offers Transparent Redirect. Supported methods that helps with PCI compliance now are called ["Drop-in"](https://developers.braintreepayments.com/guides/drop-in/javascript/v2) and ["Hosted Fields"](https://developers.braintreepayments.com/guides/hosted-fields/overview/javascript/v2) An example of using the Drop-in interface with a Python...
@litchfield what I was saying is that the method currently in use in latest django-payments release, that was called Transparent Redirect, do not work anymore so I was just agreeing...
I managed to get it working, apparently was not that Braintree stopped supporting the current used method, but an incompatibility with `` that was passed to `xml_from_dict()` in `braintree/util/xml_util.py` raising...
I didn't saw the issue before, but just created a pull request for this #144 It's a while that this import format is reported as deprecate (since the long standing...
EDIT: I initially missed that you're using `nuxt generate` but what I wrote applies with minor modifications also to your case, in particular way substituting "nuxt start" with "your apache/nginx/whatever...
> Also, I couldn't find `generate.dir` in the docs? I'm using Nuxt JS 2.4.5 This is what you're looking for: https://nuxtjs.org/api/configuration-generate/#dir The `generate` property is not on the default `nuxt.config.js`...