mrauhu

Results 13 comments of mrauhu

> It might be better to add machine readable strings. Purpose of this changes is make a human readable Server-Side Rendered (SSR) 404 error page with a machine readable `404...

@SvenWangChina @shailee-m solution for SASS/SCSS: ```bash meteor add akryum:vue-sass ``` If you are using LESS in project: ``` meteor add akryum:vue-less ``` Same for Stylus: ``` meteor add akryum:vue-stylus ```

@shailee-m maybe you need to separate SCSS and Vue. Because, I don't use the `` tag inside Vue components, and all works like a charm. ## Example directory structure of...

@sangyoo91 the Stylus was unmaintained a long time, my opinion is use the SASS (SCSS).

@devrobinkroeker probably it's in your `node_modules/`. You can create the `.vueignore` file with content: ``` node_modules ``` See: https://github.com/meteor-vue/vue-meteor/blob/00ba505ad9aa5a8d53b30d4570ae83b0ca393936/packages/vue-component/README.md#ignore-files

@kutlugsahin @Symbolk Fix for cards demo `vue-smooth-dnd/demo/src/pages/cards.vue`: ```css .card-scene { height: 100vh; } ```

> Any update on this? @pi0 unfortunately, I can't create a reproduction in the isolated environment only for `destr` package. Changes after replacing `destr()` to `JSON.parse()` function for the production...

> Higher memory usage is likely the overhead of regex checkers over a heavy payload. API responses is nested tree JSON documents, 50—100 KB size. > What happens after max...

@dargmuesli it's part of the Datadog APM. The [`dd-trace-js`](https://github.com/DataDog/dd-trace-js) package was used for tracing. Under the hood it's using the [`@datadog/pprof`](https://github.com/DataDog/pprof-nodejs) package, fork of [`pprof`](https://github.com/google/pprof-nodejs). The [Datadog Continuous Profiler](https://docs.datadoghq.com/tracing/profiler/) used...