summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--packages/astro/src/@types/astro.ts2
-rw-r--r--packages/astro/test/units/i18n/astro_i18n.test.js24
2 files changed, 13 insertions, 13 deletions
diff --git a/packages/astro/src/@types/astro.ts b/packages/astro/src/@types/astro.ts
index 21e842580..82f4977a2 100644
--- a/packages/astro/src/@types/astro.ts
+++ b/packages/astro/src/@types/astro.ts
@@ -1955,7 +1955,7 @@ export interface AstroUserConfig {
* In the event of route collisions, where two routes of equal route priority attempt to build the same URL, Astro will log a warning identifying the conflicting routes.
*/
globalRoutePriority?: boolean;
-
+
/**
* @docs
* @name experimental.security
diff --git a/packages/astro/test/units/i18n/astro_i18n.test.js b/packages/astro/test/units/i18n/astro_i18n.test.js
index b563f9ba2..c53d43748 100644
--- a/packages/astro/test/units/i18n/astro_i18n.test.js
+++ b/packages/astro/test/units/i18n/astro_i18n.test.js
@@ -1548,7 +1548,7 @@ describe('getLocaleAbsoluteUrlList', () => {
const config = await validateConfig(
{
format: 'directory',
- output: "server",
+ output: 'server',
site: 'https://example.com/',
trailingSlash: 'always',
i18n: {
@@ -1588,17 +1588,17 @@ describe('getLocaleAbsoluteUrlList', () => {
* @type {import("../../../dist/@types").AstroUserConfig}
*/
const config = {
- i18n: {
- defaultLocale: 'en',
- locales: [
- 'en',
- 'en_US',
- 'es',
- {
- path: 'italiano',
- codes: ['it', 'it-VA'],
- },
- ],
+ i18n: {
+ defaultLocale: 'en',
+ locales: [
+ 'en',
+ 'en_US',
+ 'es',
+ {
+ path: 'italiano',
+ codes: ['it', 'it-VA'],
+ },
+ ],
},
};
// directory format