Joan León

Results 34 comments of Joan León
trafficstars

Take a look at the https://nicedoc.io/ project. 👉🏼 https://nicedoc.io/Developerayo/awesome-cloudinary

You need different values in the `queries` object. Like this: ```css postCss: [ require('postcss-extract-media-query')({ output: { path: path.join(__dirname, '/public/css'), name: '[query].css' }, queries: { 'only screen and (min-width: 1023px)': 'desktop-1023px',...

Btw, [You may not need loadCSS…](https://www.filamentgroup.com/lab/load-css-simpler/#you-may-not-need-loadcss%E2%80%A6), by **Filament Group**. Another approach, without dependencies will be: ```html const media = window.matchMedia('(min-width: 1024px)') if (media.matches) { const desktopCSS = document.createElement('link'); desktopCSS.rel =...

Hi @tunetheweb I would like to help with Spanish translation.

> Good stuff @nucliweb - tag a chapter with your name in the first comment and away you go! @tunetheweb I can't edit the first comment to add my name.

Hi @tunetheweb I can help with the Spanish translation 2021, and I would like to start with performance, resource-hints, javascript and webassembly sections.

Ok, but the tests run in dev or deploy mode. We don't need mocha in the production bundle, so if we move as a `devDependency` the mocha is available to...

Hi @hellonearthis You define the sw.js file at the root of the site, but your file isn't in the root. You need to add the **scope** ``` if ('serviceWorker' in...