mirror of
https://github.com/withastro/astro.git
synced 2024-12-16 21:46:22 -05:00
46ea29f91d
Co-authored-by: Florian Lefebvre <contact@florian-lefebvre.dev> Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca>
15 lines
715 B
Markdown
15 lines
715 B
Markdown
---
|
|
'astro': major
|
|
---
|
|
|
|
Updates how the `build.client` and `build.server` option values get resolved to match existing documentation. With this fix, the option values will now correctly resolve relative to the `outDir` option. So if `outDir` is set to `./dist/nested/`, then by default:
|
|
|
|
- `build.client` will resolve to `<root>/dist/nested/client/`
|
|
- `build.server` will resolve to `<root>/dist/nested/server/`
|
|
|
|
Previously the values were incorrectly resolved:
|
|
|
|
- `build.client` was resolved to `<root>/dist/nested/dist/client/`
|
|
- `build.server` was resolved to `<root>/dist/nested/dist/server/`
|
|
|
|
If you were relying on the previous build paths, make sure that your project code is updated to the new build paths.
|