Results 79 comments of Soviut

Okay, I'll start this off. Correct me if any of the points aren't true enough: ### Should I compile? - I'm in production and I don't want LESS taking extra...

That's why I think my suggested "when should I compile, when should I run live/less.js?" side-by-side comparison is crucial. It allows people to understand the pros and cons of both...

I know that when I got into LESS, the first instructions on the site that I saw were "here's how easy it is to add in the browser". This was...

@jonschlinkert I could certainly try! I know how source maps work but I haven't been playing with any of the wip branches so I'll need some guidance.

@posva I looked at my code again and realized the import was `import router from '@/router'`. So that's why it worked.

I normally do, I just let VSCode do the import in this case and it worked. I had blinders on because I was experimenting with the new SFC syntax and...

I wouldn't consider the installation instructions an example. Most packages I've seen show both. I'll see about retrying the PR.

Your fetch should not rely on a secret. If it does, you should make a small API endpoint in the nuxt server.js. This backend has access to the secret without...

The issue is caused by SVGO aggressively optimizing your files. To disable SVGO add the following option to the vue-svg-loader in your webpack config. ``` use: [ { loader: 'vue-svg-loader',...

I too have been having issues doing a removelogging after uglify. The current solution I'm using is to just put removelogging before the uglify task in the build order. This...