Pooya Parsa

Results 596 issues of Pooya Parsa

https://github.com/nuxt/test-utils

Ref: https://github.com/nuxt/modules/pull/33 I think since we are migrating to Nuxt3, would be best if we directly implement it with a Nitro API route

- https://github.com/microcipcip/cookie-universal - https://github.com/lupas/nuxt-fire - https://github.com/vaso2/nuxt-fontawesome - https://github.com/wemake-services/nuxt-imagemin - https://github.com/kdydesign/nuxt-moment-module - https://github.com/vicbergquist/nuxt-sanity - https://github.com/gaven/nuxt-svg-sprite-module - https://github.com/nurdism/nuxtjs-electron - https://github.com/vaso2/nuxt-fullpage.js (vs https://github.com/vaso2/fullpage-nuxt :eyes: )

pending

This PR allows external tooling like nuxt to provide a generated hash in options (passed as object) to reuse context ![image](https://user-images.githubusercontent.com/5158436/111034614-c1c51e00-8416-11eb-80fe-727847d7ae08.png)

There is a nice initiative from @maciejpedzich already: https://github.com/maciejpedzich/nuxt-feed-module/ The upstream issue to consider merging: https://github.com/maciejpedzich/nuxt-feed-module/issues/1 /cc @manniL

For more semantic usage, an `customExtendKey` option can be provided. This alt key is **single extend** allowing Array usage for config override (#https://github.com/unjs/c12/issues/9) `customExtendKey: 'theme'`: ```js theme: 'source', theme: ['source',...

Related to #16 Allow adding extends with `{NAME}_EXTENDS`. (It is differently handled from #16 since should happen before config resolution) Notes: - We might allow splitting with `,` for multiple...

We can use destr to allow overriding any configuration using `process.env.{NAME}_CONFIG_{PATH}`. Let's same NAME is `NUXT`: - `NUXT_CONFIG_SSR=false` overrides `ssr` to `false` - `NUXT_CONFIG_GENERATE:CRAWLER=true` overrides `generate.crawler` to `true` - `NUXT_CONFIG={"ssr":...

enhancement

```js { extends: [ ['source', { override: { } ], { from: 'source', override: { } } ] } ```

To be fully 12 factor compliant, we shall allow overriding config with env variables. ```js // foo.config.ts export default { bar: { baz: 123 } } ``` Using `FOO_CONFIG_BAR_BAZ=456`, should...