Juni Brosas

Results 10 comments of Juni Brosas

This seems like a source-map-loader issue. Try excluding the library in your webpack config. `{ test: /\.js$/, loader: 'source-map-loader', exclude: ['node_modules/ngx-uploader'] },`

you can include the node_modules when you use a loader. ``` include: [ path.resolve(__dirname, "src"), path.resolve(__dirname, "node_modules/ui") // include specific package from node_modules ] ``` ``` include: [ path.resolve(__dirname, "src"),...

Check your components. I came across with this because I have two notification components. I set the style props of the first one but it did not reflect. Turns out...

I am also having this error when I hit refresh after logging in an account. Now I am using back the 0.2.1. The description says make sure you are on...

It gives me those errors so right now I just reverted back to the old version which is working for me ( 1.3.0). If Git is used in the project,...

@martinhbramwell , is your project working property before you updated to 1.3.3? and are you using Git? If so, just use `git stash save`

@efleurine you can still test sw features by running your app in production mode locally. And thats npm run build && npm run start.

Make sure your CSS path from third party library is correct. In the case of this repository. It should be based on the html file path.