Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(nuxt): add layer meta and env overrides to config types #20329

Merged
merged 4 commits into from Apr 29, 2023

Conversation

danielroe
Copy link
Member

πŸ”— Linked issue

❓ Type of change

  • πŸ“– Documentation (updates to the documentation or readme)
  • 🐞 Bug fix (a non-breaking change that fixes an issue)
  • πŸ‘Œ Enhancement (improving an existing functionality like performance)
  • ✨ New feature (a non-breaking change that adds functionality)
  • 🧹 Chore (updates to the build process or auxiliary tools and libraries)
  • ⚠️ Breaking change (fix or feature that would cause existing functionality to change)

πŸ“š Description

This adds route metadata (via $meta) as well as per-environment overrides to Nuxt config typings, all implemented upstream in c12:

πŸ“ Checklist

  • I have linked an issue or discussion.
  • I have updated the documentation accordingly.

@danielroe danielroe added this to the v3.5 milestone Apr 17, 2023
@danielroe danielroe requested a review from pi0 April 17, 2023 13:05
@danielroe danielroe self-assigned this Apr 17, 2023
@codesandbox
Copy link

codesandbox bot commented Apr 17, 2023

CodeSandbox logoCodeSandbox logoΒ  Open in CodeSandbox Web Editor | VS Code | VS Code Insiders

Copy link
Member

@pi0 pi0 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

πŸ’―

@danielroe danielroe merged commit 24cce84 into main Apr 29, 2023
17 checks passed
@danielroe danielroe deleted the feat/layer-env-meta branch April 29, 2023 22:51
@github-actions github-actions bot mentioned this pull request Apr 29, 2023
@github-actions github-actions bot mentioned this pull request May 16, 2023
huang-julien pushed a commit to huang-julien/nuxt-hydration that referenced this pull request May 16, 2023
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [nuxt](https://togithub.com/nuxt/nuxt) | [`3.4.2` ->
`3.5.0`](https://renovatebot.com/diffs/npm/nuxt/3.4.2/3.5.0) |
[![age](https://badges.renovateapi.com/packages/npm/nuxt/3.5.0/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/nuxt/3.5.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/nuxt/3.5.0/compatibility-slim/3.4.2)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/nuxt/3.5.0/confidence-slim/3.4.2)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>nuxt/nuxt</summary>

### [`v3.5.0`](https://togithub.com/nuxt/nuxt/releases/tag/v3.5.0)

[Compare Source](https://togithub.com/nuxt/nuxt/compare/v3.4.3...v3.5.0)

> 3.5.0 is a minor (feature) release with lots of new features to play
with.

#### πŸ‘€ Highlights

##### ⚑️ Vue 3.3 released!

Vue 3.3 has been released, with lots of exciting features, particularly
around type support. This also brings a significant improvement to data
fetching when navigating between nested pages
([nuxt/nuxt#20777),
thanks to [@&#8203;antfu](https://togithub.com/antfu) and
[@&#8203;baiwusanyu-c](https://togithub.com/baiwusanyu-c).

-   new `defineOptions` macro
-   'generic' components
-   typed slots and using external types in defineProps
-   ... and more

Read **[the full release
announcement](https://blog.vuejs.org/posts/vue-3-3)** for more details.

##### πŸ™Œ Nitropack v2.4

We've been working on lots of improvements to Nitro and these have
landed already in Nitro v2.4 - you may already have this upgrade, which
contains a lot of bug fixes, updates to the module worker format for
Cloudflare, Vercel KV support and more.

One note: if you're deploying to Vercel or Netlify and want to benefit
from incremental static regeneration, you should now update your route
rules:

```diff
routeRules: {
--  '/blog/**': { swr: 3000 },
++  '/blog/**': { isr: 3000 },
}
```

Read **[the full release
notes](https://togithub.com/unjs/nitro/releases/tag/v2.4.0)**.

##### πŸ’– New defaults

**Rich JSON payload serialisation** is now enabled by default
([nuxt/nuxt#19205,
[nuxt/nuxt#20770).
This is both faster and allows serialising complex objects in the
payload passed from the Nuxt server to client (and also when extracting
payload data for prerendered sites).

This now means that **various rich JS types are supported
out-of-the-box**: regular expressions, dates, Map and Set and BigInt as
well as NuxtError - and Vue-specific objects like `ref`, `reactive`,
`shallowRef` and `shallowReactive`.

You can find [an
example](https://togithub.com/nuxt/nuxt/blob/main/test/fixtures/basic/pages/json-payload.vue)
in our test suite.

This is all possible due to
[Rich-Harris/devalue#&#8203;58](https://togithub.com/Rich-Harris/devalue/pull/58).
For a long time, Nuxt has been using our own fork of devalue owing to
issues serialising Errors and other non-POJO objects, but we now have
transitioned back to the original.

You can even register your own custom types with a new object-syntax
Nuxt plugin:

```ts [plugins/custom-payload-type.ts]
export default definePayloadPlugin(() => {
  definePayloadReducer('BlinkingText', data => data === '<original-blink>' && '_')
  definePayloadReviver('BlinkingText', () => '<revivified-blink>')
})
```

You can read more about how this works
[here](https://togithub.com/rich-harris/devalue#custom-types).

##### πŸ› Interactive server components

This feature should be considered highly experimental, but thanks to
some great work from
[@&#8203;huang-julien](https://togithub.com/huang-julien) we now support
interactive content within server components via *slots*
([nuxt/nuxt#20284).

You can follow the server component roadmap at
[nuxt/nuxt#19772.

##### ⏰ Environment config

You can now configure fully typed, per-environment overrides in your
`nuxt.config`:

```js
export default defineNuxtConfig({
  $production: {
    routeRules: {
      '/**': { isr: true }
    }
  },
  $development: {
    //
  }
})
```

If you're authoring layers, you can also use the `$meta` key to provide
metadata that you or the consumers of your layer might use.

Read more:
[nuxt/nuxt#20329.

##### πŸ’ͺ Fully typed pages

You can benefit from fully typed routing within your Nuxt app via this
experimental integration with
https://github.com/posva/unplugin-vue-router - thanks to some great work
from [@&#8203;posva](https://togithub.com/posva)! Out of the box, this
will enable typed usage of `navigateTo`, `<NuxtLink>`, `router.push()`
and more. You can even get typed params within a page by using `const
route = useRoute('route-name')`.

```ts
export default defineNuxtConfig({
  experimental: {
    typedPages: true
  }
})
```

##### πŸ”Ž 'Bundler' module resolution

We now have full support within Nuxt for the `bundler` strategy of
[module
resolution](https://www.typescriptlang.org/docs/handbook/module-resolution.html).
We would recommend adopting this if possible. It has type support for
subpath exports, for example, but more exactly matches the behaviour of
build tools like Vite and Nuxt than `Node16` resolution.

```ts
export default defineNuxtConfig({
  typescript: {
    tsConfig: {
      compilerOptions: {
        moduleResolution: 'bundler'
      }
    }
  }
})
```

This turns on TypeScript's ability to 'follow' Node subpath exports. For
example, if a library has a subpath export like `mylib/path` that is
mapped to `mylib/dist/path.mjs` then the types for this can be pulled in
from `mylib/dist/path.d.ts` rather than requiring the library author to
create `mylib/path.d.ts`.

##### βš—οΈ Separate server types

We plan to improve clarity within your IDE between the 'nitro' and 'vue'
part of your app, and we've shipped the first part of this via a
separate generated `tsconfig.json` for your `~/server` directory
([nuxt/nuxt#20559).
You can use by adding an additional `~/server/tsconfig.json` with the
following content:

```json
{
  "extends": "../.nuxt/tsconfig.server.json"
}
```

Although right now these values won't be respected when type checking,
you should get better type hints in your IDE.

##### πŸ’€ Deprecations

Although we have not typed or documented the `build.extend` hook from
Nuxt 2, we have been calling it within the webpack builder. We are now
explicitly deprecating this and will remove it in a future minor
version.

#### βœ… Upgrading

As usual, our recommendation for upgrading is to run:

```sh
nuxi upgrade --force
```

This will refresh your lockfile as well, and ensures that you pull in
updates from other dependencies that Nuxt relies on, particularly in the
unjs ecosystem.

#### πŸ‘‰ Changelog

[compare
changes](https://togithub.com/nuxt/nuxt/compare/v3.4.3...v3.5.0)

##### πŸš€ Enhancements

- **kit:** Add `prepend` option to `addImportsDir`
([#&#8203;20307](https://togithub.com/nuxt/nuxt/pull/20307))
- **nuxt:** Add scoped helper for clearing error within boundary
([#&#8203;20508](https://togithub.com/nuxt/nuxt/pull/20508))
- **nuxt:** Auto import 'watchPostEffect' and 'watchSyncEffect' from vue
([#&#8203;20279](https://togithub.com/nuxt/nuxt/pull/20279))
- **vite:** Introduce `vite:configResolved` hook
([#&#8203;20411](https://togithub.com/nuxt/nuxt/pull/20411))
- **webpack:** Introduce `webpack:configResolved` hook
([#&#8203;20412](https://togithub.com/nuxt/nuxt/pull/20412))
- **kit:** Allow vite and webpack plugins to be prepended
([#&#8203;20403](https://togithub.com/nuxt/nuxt/pull/20403))
- **nuxt:** Add layer meta and env overrides to config types
([#&#8203;20329](https://togithub.com/nuxt/nuxt/pull/20329))
- **test-utils:** Add option to configure test server port
([#&#8203;20443](https://togithub.com/nuxt/nuxt/pull/20443))
- **nuxt:** Allow access to components within app
([#&#8203;20604](https://togithub.com/nuxt/nuxt/pull/20604))
- **kit:** Support passing getter to `addVitePlugin` and
`addWebpackPlugin`
([#&#8203;20525](https://togithub.com/nuxt/nuxt/pull/20525))
- **cli:** Allow greater control of `nuxi analyze` from cli
([#&#8203;20387](https://togithub.com/nuxt/nuxt/pull/20387))
- **nuxt:** Add `nuxtApp.runWithContext`
([#&#8203;20608](https://togithub.com/nuxt/nuxt/pull/20608))
- **deps:** Upgrade to nitropack v2.4
([#&#8203;20688](https://togithub.com/nuxt/nuxt/pull/20688))
- **nuxt:** Add experimental `typedPages` option
([#&#8203;20367](https://togithub.com/nuxt/nuxt/pull/20367))
- **nuxt:** Add apps to nuxt build-time instance
([#&#8203;20637](https://togithub.com/nuxt/nuxt/pull/20637))
- **cli:** Allow passing overrides to other nuxi commands
([#&#8203;20760](https://togithub.com/nuxt/nuxt/pull/20760))
- **schema:** Enable rich json payloads by default
([#&#8203;20770](https://togithub.com/nuxt/nuxt/pull/20770))
- **deps:** Update vue to v3.3
([#&#8203;20478](https://togithub.com/nuxt/nuxt/pull/20478))
- **nuxt:** Use `runWithContext` within `callWithNuxt`
([#&#8203;20775](https://togithub.com/nuxt/nuxt/pull/20775))
- **nuxt:** Add `useRequestURL` helper
([#&#8203;20765](https://togithub.com/nuxt/nuxt/pull/20765))
- **nuxt:** Allow fallback production content in `<DevOnly>`
([#&#8203;20817](https://togithub.com/nuxt/nuxt/pull/20817))
- **kit:** `addBuildPlugin` for builder-agnostic implementation
([#&#8203;20587](https://togithub.com/nuxt/nuxt/pull/20587))
- **nuxt:** Allow keeping fallback for `NuxtClientFallback`
([#&#8203;20336](https://togithub.com/nuxt/nuxt/pull/20336))
- **nuxt:** Support separate server tsconfig
([#&#8203;20559](https://togithub.com/nuxt/nuxt/pull/20559))
- **nuxt:** Full scoped slots support for server components
([#&#8203;20284](https://togithub.com/nuxt/nuxt/pull/20284))
- **nuxt:** Support parallel plugins
([#&#8203;20460](https://togithub.com/nuxt/nuxt/pull/20460))

##### 🩹 Fixes

- **nuxt:** Remove backwards-compatible runtimeConfig proxy
([#&#8203;20340](https://togithub.com/nuxt/nuxt/pull/20340))
- **nuxt:** Add `@nuxt/devtools` module before core modules
([#&#8203;20595](https://togithub.com/nuxt/nuxt/pull/20595))
- **nuxt:** Properly handle query for component wrapper
([#&#8203;20591](https://togithub.com/nuxt/nuxt/pull/20591))
- **nuxt:** Skip payload extraction for island context
([#&#8203;20590](https://togithub.com/nuxt/nuxt/pull/20590))
- **nuxt:** Remove internal `<FragmentWrapper>`
([#&#8203;20607](https://togithub.com/nuxt/nuxt/pull/20607))
- **nuxt:** Ensure `useError` is called with nuxt app context
([#&#8203;20585](https://togithub.com/nuxt/nuxt/pull/20585))
- **nuxt:** Run page meta plugin on all pages (and only pages)
([#&#8203;20628](https://togithub.com/nuxt/nuxt/pull/20628))
- **nuxt, vite:** Ignore `nuxt_component` ssr style and `isVue`
([#&#8203;20679](https://togithub.com/nuxt/nuxt/pull/20679))
- **webpack:** Warn when using deprecated `build.extend` hook
([#&#8203;20605](https://togithub.com/nuxt/nuxt/pull/20605))
- **nuxt:** Allow resolving client nuxt app to singleton
([#&#8203;20639](https://togithub.com/nuxt/nuxt/pull/20639))
- **nuxt:** Generate empty sourcemaps for wrappers
([#&#8203;20744](https://togithub.com/nuxt/nuxt/pull/20744))
- **nuxt:** Prevent treeshaking hooks with composable names
([#&#8203;20745](https://togithub.com/nuxt/nuxt/pull/20745))
- **kit:** Prefer esm resolution for modules to install
([#&#8203;20757](https://togithub.com/nuxt/nuxt/pull/20757))
- **vite:** Expand `fs.allow` dirs to include app files
([#&#8203;20755](https://togithub.com/nuxt/nuxt/pull/20755))
- **nuxt:** Deduplicate global components before registration
([#&#8203;20743](https://togithub.com/nuxt/nuxt/pull/20743))
- **nuxt:** Remove webstorm compatibility augmentation
([0258acdc8](https://togithub.com/nuxt/nuxt/commit/0258acdc8))
- **nuxt:** Enable suspensible behaviour for nested pages
([#&#8203;20777](https://togithub.com/nuxt/nuxt/pull/20777))
- **cli:** Hard-reload nuxt when `.env` changes
([#&#8203;20501](https://togithub.com/nuxt/nuxt/pull/20501))
- **nuxt:** Avoid destructuring error prop (works around upstream bug)
([#&#8203;20795](https://togithub.com/nuxt/nuxt/pull/20795))
- **nuxt:** Always inline styles for server/island components
([#&#8203;20599](https://togithub.com/nuxt/nuxt/pull/20599))
- **nuxt:** Allow serialising undefined refs
([#&#8203;20828](https://togithub.com/nuxt/nuxt/pull/20828))
- **nuxt:** Transform client fallbacks directly on SFCs
([#&#8203;20835](https://togithub.com/nuxt/nuxt/pull/20835))
- **vite:** Dedupe/optimize more vue core deps
([#&#8203;20829](https://togithub.com/nuxt/nuxt/pull/20829))
- **nuxt:** Get fallback for `<DevOnly>` from parsed html
([#&#8203;20840](https://togithub.com/nuxt/nuxt/pull/20840))
- **nuxt:** Ensure all dir parts are present in component name
([#&#8203;20779](https://togithub.com/nuxt/nuxt/pull/20779))
- **nuxt:** Allow `pages:extend` to enable pages module
([#&#8203;20806](https://togithub.com/nuxt/nuxt/pull/20806))
- **nuxt:** Stop loading indicator on vue errors
([#&#8203;20738](https://togithub.com/nuxt/nuxt/pull/20738))
- **nuxt:** Add types for webpack/vite environments
([#&#8203;20749](https://togithub.com/nuxt/nuxt/pull/20749))
- **nuxt:** Pass from + savedPosition to first `scrollBehavior`
([#&#8203;20859](https://togithub.com/nuxt/nuxt/pull/20859))

##### πŸ’… Refactors

- **schema:** Move `runtimeCompiler` option out of experimental
([#&#8203;20606](https://togithub.com/nuxt/nuxt/pull/20606))
- **kit:** Use esm utils for `resolvePath`
([#&#8203;20756](https://togithub.com/nuxt/nuxt/pull/20756))

##### πŸ“– Documentation

- Fix typo ([#&#8203;20577](https://togithub.com/nuxt/nuxt/pull/20577))
- Update tailwind configuration guide
([#&#8203;20598](https://togithub.com/nuxt/nuxt/pull/20598))
- Fix fetch composable examples
([#&#8203;20603](https://togithub.com/nuxt/nuxt/pull/20603))
- Note that `useCookie` does not share state
([#&#8203;20665](https://togithub.com/nuxt/nuxt/pull/20665))
- Selective pre-rendering options
([#&#8203;20670](https://togithub.com/nuxt/nuxt/pull/20670))
- Ensure we guard all `navigateTo` examples
([#&#8203;20678](https://togithub.com/nuxt/nuxt/pull/20678))
- Add `useSeoMeta` and `useServerSeoMeta` pages
([#&#8203;20656](https://togithub.com/nuxt/nuxt/pull/20656))
- Recommend `<NuxtLayout>` when migrating `error.vue`
([#&#8203;20690](https://togithub.com/nuxt/nuxt/pull/20690))
- Add lagon to presets list
([#&#8203;20706](https://togithub.com/nuxt/nuxt/pull/20706))
- Add `await` before lazy composable examples
([7e7e006e9](https://togithub.com/nuxt/nuxt/commit/7e7e006e9))
- Add missing step migrating to `pinia`
([#&#8203;20778](https://togithub.com/nuxt/nuxt/pull/20778))
- Server directory improvements
([d53cc604d](https://togithub.com/nuxt/nuxt/commit/d53cc604d))

##### 🏑 Chore

- Revert markdownlint upgrade
([da29dea5c](https://togithub.com/nuxt/nuxt/commit/da29dea5c))
- Run docs lint workflow on dep upgrades
([c536e5a63](https://togithub.com/nuxt/nuxt/commit/c536e5a63))
- Revert `markdownlint-cli` update and prevent auto-update
([675445f98](https://togithub.com/nuxt/nuxt/commit/675445f98))
- Ban `@ts-ignore`
([4f0d3d4ae](https://togithub.com/nuxt/nuxt/commit/4f0d3d4ae))
- Do not install example dependencies
([#&#8203;20689](https://togithub.com/nuxt/nuxt/pull/20689))
- Disallow `.only` in tests
([ad97cb45a](https://togithub.com/nuxt/nuxt/commit/ad97cb45a))
- Type-check `.mjs` files
([#&#8203;20711](https://togithub.com/nuxt/nuxt/pull/20711))
- Fix typo in `pnpm-workspace.yaml`
([#&#8203;20751](https://togithub.com/nuxt/nuxt/pull/20751))
- Update target for `externalVue` removal
([a33d2e7ae](https://togithub.com/nuxt/nuxt/commit/a33d2e7ae))
-   Lint ([742f61766](https://togithub.com/nuxt/nuxt/commit/742f61766))

##### βœ… Tests

- Test with bundler module resolution
([#&#8203;20629](https://togithub.com/nuxt/nuxt/pull/20629))

##### πŸ€– CI

- Run autofix on renovate branches
([af75f18cf](https://togithub.com/nuxt/nuxt/commit/af75f18cf))
- Run 2.x nightly release on node 16
([a81f9e4c8](https://togithub.com/nuxt/nuxt/commit/a81f9e4c8))
- Add conditional for node 16 test
([aee1218e6](https://togithub.com/nuxt/nuxt/commit/aee1218e6))
- Set max memory for nuxt2 release script globally
([d1a5719cb](https://togithub.com/nuxt/nuxt/commit/d1a5719cb))
- Add workflow to release branches
([bc28d536c](https://togithub.com/nuxt/nuxt/commit/bc28d536c))
- Update pr condition
([f8c7b34bd](https://togithub.com/nuxt/nuxt/commit/f8c7b34bd))
- Update repo 🀣
([f88c1e645](https://togithub.com/nuxt/nuxt/commit/f88c1e645))
- Allow specifying tag for edge releases
([5fdb6a6d6](https://togithub.com/nuxt/nuxt/commit/5fdb6a6d6))
- Comment with link to tag of released version
([f945cb197](https://togithub.com/nuxt/nuxt/commit/f945cb197))
- Pass tag as argument
([1aec0e503](https://togithub.com/nuxt/nuxt/commit/1aec0e503))
- Release edge versions of labelled prs
([cdc42d044](https://togithub.com/nuxt/nuxt/commit/cdc42d044))

##### ❀️  Contributors

-   Daniel Roe ([@&#8203;danielroe](https://togithub.com/danielroe))
-   SΓ©bastien Chopin ([@&#8203;Atinux](https://togithub.com/Atinux))
-   Anthony Fu ([@&#8203;antfu](https://togithub.com/antfu))
- Julien Huang
([@&#8203;huang-julien](https://togithub.com/huang-julien))
- Alexander
([@&#8203;xanderbarkhatov](https://togithub.com/xanderbarkhatov))
- Dario Ferderber
([@&#8203;darioferderber](https://togithub.com/darioferderber))
-   η™½ι›ΎδΈ‰θ―­ ([@&#8203;baiwusanyu-c](https://togithub.com/baiwusanyu-c))
-   Inesh Bose ([@&#8203;ineshbose](https://togithub.com/ineshbose))
-   Lehoczky ZoltΓ‘n ([@&#8203;Lehoczky](https://togithub.com/Lehoczky))
-   Emile Caron ([@&#8203;emilecaron](https://togithub.com/emilecaron))
- Eckhardt (Kaizen) Dreyer
([@&#8203;Eckhardt-D](https://togithub.com/Eckhardt-D))
-   Eduardo San Martin Morote
-   Tom Lienard ([@&#8203;QuiiBz](https://togithub.com/QuiiBz))
-   Scscgit ([@&#8203;scscgit](https://togithub.com/scscgit))
-   ClΓ©ment Ollivier ([@&#8203;clemcode](https://togithub.com/clemcode))
- Jamie Warburton ([@&#8203;Jamiewarb](https://togithub.com/Jamiewarb))
-   Enkot ([@&#8203;enkot](https://togithub.com/enkot))
-   Phojie Rengel ([@&#8203;phojie](https://togithub.com/phojie))
-   Harlan Wilton ([@&#8203;harlan-zw](https://togithub.com/harlan-zw))
- GergΕ‘ Jedlicska
([@&#8203;gjedlicska](https://togithub.com/gjedlicska))
- Stefan Milosevic
([@&#8203;smilosevic](https://togithub.com/smilosevic))
-   Pavel Mokin ([@&#8203;Lyrialtus](https://togithub.com/Lyrialtus))

### [`v3.4.3`](https://togithub.com/nuxt/nuxt/releases/tag/v3.4.3)

[Compare Source](https://togithub.com/nuxt/nuxt/compare/v3.4.2...v3.4.3)

> 3.4.3 is a patch release with the latest bug fixes. 🐞 It is expected
that the next release will be v3.5, in approximately two weeks' time.

#### βœ… Upgrading

As usual, our recommendation for upgrading is to run:

```sh
nuxi upgrade --force
```

This will refresh your lockfile as well, and ensures that you pull in
updates from other dependencies that Nuxt relies on, particularly in the
unjs ecosystem.

#### πŸ‘‰ Changelog

[compare
changes](https://togithub.com/nuxt/nuxt/compare/v3.4.2...v3.4.3)

##### 🩹 Fixes

- **nuxt:** Don't call `timeEnd` unless we're debugging
([#&#8203;20424](https://togithub.com/nuxt/nuxt/pull/20424))
- **nuxt:** Use key to force server component re-rendering
([#&#8203;19911](https://togithub.com/nuxt/nuxt/pull/19911))
- **nuxt:** Add basic typings for `<ClientOnly>`
([f1ded44e8](https://togithub.com/nuxt/nuxt/commit/f1ded44e8))
- **nuxt:** Use `event.node.req` in cookie utility
([#&#8203;20474](https://togithub.com/nuxt/nuxt/pull/20474))
- **deps:** Relax upper node version constraint
([#&#8203;20472](https://togithub.com/nuxt/nuxt/pull/20472))
- **nuxi,schema:** Support `devServer.https: true`
([#&#8203;20498](https://togithub.com/nuxt/nuxt/pull/20498))
- **nuxt:** Throw 404 when accessing `/__nuxt_error` directly
([#&#8203;20497](https://togithub.com/nuxt/nuxt/pull/20497))
- **nuxt:** Use `callAsync` for executing hooks with context
([#&#8203;20510](https://togithub.com/nuxt/nuxt/pull/20510))
- **nuxt:** Improved typing support for app config
([#&#8203;20526](https://togithub.com/nuxt/nuxt/pull/20526))
- **nuxt:** Call `app:error` in SSR before rendering error page
([#&#8203;20511](https://togithub.com/nuxt/nuxt/pull/20511))
- **nuxt:** Restrict access to single renderer outside of test/rootDir
([#&#8203;20543](https://togithub.com/nuxt/nuxt/pull/20543))
- **nuxt:** Throw errors when running legacy `asyncData`
([#&#8203;20535](https://togithub.com/nuxt/nuxt/pull/20535))
- **nuxt:** Transform `#components` imports into direct component
imports ([#&#8203;20547](https://togithub.com/nuxt/nuxt/pull/20547))
- **nuxt:** Return `RenderResponse` for redirects
([#&#8203;20496](https://togithub.com/nuxt/nuxt/pull/20496))

##### πŸ“– Documentation

- Fix typos on docs homepage
([#&#8203;20456](https://togithub.com/nuxt/nuxt/pull/20456))
- Update links to `vue-router` docs
([#&#8203;20454](https://togithub.com/nuxt/nuxt/pull/20454))
- Remove RC reference and add link to vue migration build
([#&#8203;20485](https://togithub.com/nuxt/nuxt/pull/20485))
- Add cdn proxy section
([#&#8203;20408](https://togithub.com/nuxt/nuxt/pull/20408))
- Add a next steps link to first page of migration docs
([#&#8203;20512](https://togithub.com/nuxt/nuxt/pull/20512))
- Add custom fetch composable example
([#&#8203;20115](https://togithub.com/nuxt/nuxt/pull/20115))
- Adjust wrong link after repo migration
([#&#8203;20536](https://togithub.com/nuxt/nuxt/pull/20536))

##### βœ… Tests

- Exclude default error pages from bundle test
([ba320a558](https://togithub.com/nuxt/nuxt/commit/ba320a558))
- Update snapshot
([ac598e4f4](https://togithub.com/nuxt/nuxt/commit/ac598e4f4))

##### πŸ€– CI

- Publish edge release with provenance
([ec1503731](https://togithub.com/nuxt/nuxt/commit/ec1503731))
- Run release script with node 18
([0d10e9734](https://togithub.com/nuxt/nuxt/commit/0d10e9734))
- Try releasing `nuxt-edge` with provenance
([753c4c2a3](https://togithub.com/nuxt/nuxt/commit/753c4c2a3))
- Run nuxt2 nightly release on node 14 again
([48c034cf0](https://togithub.com/nuxt/nuxt/commit/48c034cf0))

##### ❀️  Contributors

-   Daniel Roe ([@&#8203;danielroe](https://togithub.com/danielroe))
-   Anthony Fu ([@&#8203;antfu](https://togithub.com/antfu))
- Julien Huang
([@&#8203;huang-julien](https://togithub.com/huang-julien))
- Andrew Luca
([@&#8203;iamandrewluca](https://togithub.com/iamandrewluca))
-   Adrien Zaganelli ([@&#8203;adrienZ](https://togithub.com/adrienZ))
- Michael Gale (he/him)
([@&#8203;miclgael](https://togithub.com/miclgael))
-   ClΓ©ment Ollivier ([@&#8203;clemcode](https://togithub.com/clemcode))
-   Paul Melero ([@&#8203;gangsthub](https://togithub.com/gangsthub))
- Jonas Thelemann
([@&#8203;dargmuesli](https://togithub.com/dargmuesli))
-   Johannes Przymusinski ([@&#8203;cngJo](https://togithub.com/cngJo))
- Idorenyin Udoh
([@&#8203;idorenyinudoh](https://togithub.com/idorenyinudoh))

</details>

---

### Configuration

πŸ“… **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

β™» **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

πŸ”• **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://app.renovatebot.com/dashboard#github/huang-julien/nuxt-hydration).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNS44Ny4xIiwidXBkYXRlZEluVmVyIjoiMzUuODcuMSIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
@tonioriol
Copy link

tonioriol commented May 26, 2023

Hey, not sure if this is the correct place to ask, but I'm not sure how the per-env configs takes precedence over non env specific configs. Could you give me some hints on how does that actually woks, or at least where can I check the implementation of the config to see it?

export default defineNuxtConfig({
  $production: {
    routeRules: {
      '/**': process.env.CTF_PREVIEW === 'true' ? { ssr: false } : { isr: 86400 },
    },
  },
  $development: {
    routeRules: {
      '/**': { ssr: true },
    },
  },
  routeRules: {
    '/api/**': { cache: false, swr: false },
  },
})

For example, in this case, I'm not sure if the non env routeRules will be overridden by the catch-all rules in each env.

Copy link
Member Author

Yes, you can override the top level rule (/**) within a subpath (/api/**). Your example will end up merged into something like:

export default defineNuxtConfig({
  routeRules: {
    '/**': { ssr: true },
    '/api/**': { cache: false, swr: false },
  },
})

In future, it's best to ask a question on Discord or GitHub Discussions rather than commenting on a released PR.

@tonioriol
Copy link

Yes, you can override the top level rule (/**) within a subpath (/api/**). Your example will end up merged into something like:

export default defineNuxtConfig({
  routeRules: {
    '/**': { ssr: true },
    '/api/**': { cache: false, swr: false },
  },
})

In future, it's best to ask a question on Discord or GitHub Discussions rather than commenting on a released PR.

It's the only place on the internet I could find that remotely mentioned/documented. I'm actually looking for the implementation, to understand it better. But sorry about that, and thanks for answering.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants