jared laser

Results 16 comments of jared laser

@edu2004eu Could you share those ~15 lines of code so people who have this issue can get some help?

@locronaldo Solutions include: - render the wysiwyg only in environments with access to `window` - downgrade to 1.4.0 as noted in the parent comment

Same issue with the virtual hosts. I've tried using ``` javascript reload: { proxy: { host: 'susydemo' } }, ``` and my output in terminal is as follows: ``` bash...

Managed to get it working with the following: ``` javascript // added server under grunt.initConfig server: { base: 'http://susydemo' }, reload: { proxy: { port: 80, host: 'susydemo' // is...

Is `http://phi.site:80` accessible? If so, try hitting `http://phi.site:8001`, make a change to index.html with `grunt watch` running, and hopefully you'll see magic. If that doesn't work for you, I'm afraid...

This link helped me out: https://stackoverflow.com/a/66091532/628699

Confirming this issue. We submit forms with a nested schema like: ``` { "url": "https://www.github.com/", "tracking": { "fbclid": "nope", "gclid": "nope", "utm": { "campaign": "nope", "medium": "nope", "content": "nope", "source":...

Strangely, I cloned the repo and wrote a test in `/src/matched-data.spec.ts` that I expected to fail based on the problems above. ```js it('excludes non-matched nested data', done => { const...

Dove in a bit more here and it actually looks like the camelcasing is baked in to v2. https://github.com/indooorsman/esbuild-css-modules-plugin/blob/37db4608bad5891fb93e9d142aae339c761c6908/lib/plugin.js#L57-L62 Is there a way to leverage something like the `localsConvention` from...