Amit Kumar

Results 2 comments of Amit Kumar

For anyone using nuxt, I had the same error. Adding `vue-agile` to the transpile options in nuxt.config.js fixed it: ``` build: { transpile: [ 'vue-agile' ], } ``` Thanks @JakeBeresford...

@techpines 2 reasons: One, I'm developing a Heroku app. When it's on Heroku, the app only listens on http since Heroku's proxy hides the https handling. My redirection handler has...