Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -133,3 +133,11 @@ backups/

# Archivos de configuración personal
config.local.*

# Ignorar carpeta de recursos (corregido)
public/assets/resosurces/

# Archivos individuales ignorados
public/assets/resosurces/MAC Paving SEO - Jun -2025.xlsx
public/Copia de map.html
public/assets/resosurces/generate_all_services.py
5 changes: 4 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,8 @@
]
}
}
}
},
"cSpell.words": [
"Preconexión"
]
}
7 changes: 1 addition & 6 deletions astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import sitemap from '@astrojs/sitemap';
// https://astro.build/config
export default defineConfig({
site: 'https://macpavingandsealcoating.com',
trailingSlash: 'never', // Previene URLs duplicadas con trailing slash
trailingSlash: 'always', // Previene URLs duplicadas con trailing slash
integrations: [
sitemap({
changefreq: 'weekly',
Expand All @@ -20,11 +20,6 @@ export default defineConfig({
'/node_modules/', '/.vscode/', '/.git/', '/public/'
];

// Excluir URLs que terminan en / (duplicados)
if (page.endsWith('/') && page !== 'https://macpavingandsealcoating.com/') {
return false;
}

return !excludePatterns.some(pattern => page.includes(pattern));
},
// Removemos customPages para evitar duplicados
Expand Down
180 changes: 0 additions & 180 deletions generate_all_services.py

This file was deleted.

Loading