diff options
| author | Ariel Costas Guerrero <94913521+arielcostas@users.noreply.github.com> | 2025-01-13 13:39:19 +0100 |
|---|---|---|
| committer | Ariel Costas Guerrero <94913521+arielcostas@users.noreply.github.com> | 2025-01-13 13:39:19 +0100 |
| commit | 7b39f8acd2af2f2b7bb98ba87b8467d1ff26275c (patch) | |
| tree | 17ae0b069cc86a23dd85176f73ca957b0b319cbb | |
| parent | 7984f4b2ca20feeb0d228d31c264675493219fa5 (diff) | |
Fix canonical URLs
| -rw-r--r-- | astro.config.mjs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/astro.config.mjs b/astro.config.mjs index 3e48c27..0998916 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -10,6 +10,8 @@ export default defineConfig({ })], build: { assets: 'assets', - inlineStylesheets: 'never' - } + inlineStylesheets: 'never', + format: 'file', + }, + trailingSlash: "never" }); |
