JC Puno

Results 33 comments of JC Puno

> > > i add swagger in my project, but i can not access in browser. > i try create route with ` Helpers.publicPath()`, but not work Try adding the...

Same issue with you, however for me I do redirection and before I complete my redirection I reset the vuex state to initial state. I do `store.commit('RESET')` which resets the...

I'm having the same issue running with globally installed on `npm` or using the docker image. @ankushbbbr have you fixed your issue? I tried renaming `.aws` to `aws` still produces...

> @jl-DaDar You can use my fork as a workaround: https://github.com/blindpirate/dynamodb-admin/tree/add-raw-mode How do I use your branch, I am using the docker image of the `dynamodb-admin`?

I think you need to add this on your rules in `webpack.config.js` or `mochapack.config.js`: ``` { test: /\.(jpg|JPG|jpeg|png|gif|mp3|svg|ttf|woff2|woff|eot)$/gi, use: 'file-loader' } ```

> Actually, it seems everything in mochapack.opts is ignored. Specifying `--opts mochapack.opts` doesn't help Yes correct, more information is on this bug: https://github.com/sysgears/mochapack/issues/73. I wish that mochapack team would utilize...

What's the alternative for the `*.opts` file? Just add it on the node/npm command itself i'm only using the CLI.

> I had the same problem. You need to downgrade to "@nuxt/test-utils": "0.2.2". And it works. Tried your solution but having a different error of: ```JavaScript $ jest [fatal] You...

I tried clearing my `npm cache` and `yarn cache` both are failing for on the same error. I also tried installing the `sudo apt-get install g++ build-essential` but still having...

> > > Try: > > ``` > group="tickets" > chosenClass="chosen-ticket" > dragClass="dragging-ticket" > ghostClass="ghost-ticket" > :list="stage.ticketIds" > @change="changeTicketStage($event, stage)" > class="list-group"> > ``` I tried this but my dragClass...