George Katsanos

Results 99 comments of George Katsanos

@romanbalayan great work. I wish I had found your version of the documentation some days ago! I did find out how things work by trial and error after all, but...

> Do you have a browserslist file in your project? I am using the package.json config option: ```json { "browserslist": "chrome 99", } ```

I run into this while looking at the documentation: > The default targets of [@nuxt/babel-preset-app ](https://github.com/nuxt/nuxt.js/blob/dev/packages/babel-preset-app/src/index.js)are ie: '9' in the client build, and node: 'current' in the server build. Do...

@Develliot related possibly, but the fix proposed does not address it :(

Unfortunately the fix doesnt handle creation of directories, for example for storing screenshots and videos of test recordings.

Hey Matteo, appreciate the quick feedback. Bear with me if I dont get the facts right but we have a dockerized app and from my understanding stdout/stderr is auto-magically piped...

@jsumners ```js const tracer = require('dd-trace') export default function Datadog() { tracer.init({ hostname: process.env.DD_AGENT_HOST, service: 'xxx', env: process.env.STAGE, logInjection: true, }) } ``` later.. ```js const logger = require('pino')() $axios.onRequest((config)...

@jsumners can you elaborate on "instrumenting" ?

@jsumners ah yes , instrumenting is not what I'm asking here. Instrumenting as seen above in my screenshot does happen, but I'm one step before that: I'm not sure how...