Skip to content

Commit

Permalink
chore: fix alignment docs (#9920)
Browse files Browse the repository at this point in the history
* chore: fix alignment docs

* apply Sarah suggestion
  • Loading branch information
ematipico authored Feb 1, 2024
1 parent 2561c99 commit b31a466
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions packages/astro/src/@types/astro.ts
Original file line number Diff line number Diff line change
Expand Up @@ -796,7 +796,7 @@ export interface AstroUserConfig {
* {
* build: {
* // Example: Generate `page.html` instead of `page/index.html` during build.
* format: 'preserve'
* format: 'file'
* }
* }
* ```
Expand Down Expand Up @@ -1551,19 +1551,20 @@ export interface AstroUserConfig {
* ```js
* //astro.config.mjs
* export default defineConfig({
* site: "https://example.com",
* output: "server", // required, with no prerendered pages
* site: "https://example.com",
* output: "server", // required, with no prerendered pages
* adapter: node({
* mode: 'standalone',
* }),
* i18n: {
* defaultLocale: "en",
* locales: ["en", "fr", "pt-br", "es"],
* i18n: {
* defaultLocale: "en",
* locales: ["en", "fr", "pt-br", "es"],
* prefixDefaultLocale: false,
* domains: {
* fr: "https://fr.example.com",
* domains: {
* fr: "https://fr.example.com",
* es: "https://example.es"
* },
* }
* },
* })
* ```
*
Expand Down

0 comments on commit b31a466

Please sign in to comment.