61 lines
1.3 KiB
JavaScript
61 lines
1.3 KiB
JavaScript
module.exports = {
|
|
siteTitle: 'DO CLOUD',
|
|
siteUrl: 'https://docloud.es',
|
|
description: 'Internet Cloud Services - Servicios cloud profesionales',
|
|
srcDir: './',
|
|
outDir: './site',
|
|
|
|
// Branding
|
|
logo: {
|
|
light: 'assets/images/logo.svg',
|
|
dark: 'assets/images/logo.svg',
|
|
alt: 'DO CLOUD Logo',
|
|
href: './',
|
|
},
|
|
favicon: 'assets/favicon.png',
|
|
|
|
// Features - DESACTIVAR MERMAID para rendimiento
|
|
search: false,
|
|
minify: true,
|
|
copyCode: false,
|
|
pageNavigation: false,
|
|
mermaid: false,
|
|
|
|
// Sidebar - desactivado
|
|
sidebar: {
|
|
collapsible: false,
|
|
defaultCollapsed: true,
|
|
},
|
|
|
|
// Theme
|
|
theme: {
|
|
name: 'default',
|
|
defaultMode: 'light',
|
|
enableModeToggle: false,
|
|
positionMode: 'top',
|
|
codeHighlight: false,
|
|
customCss: ['assets/custom.css'],
|
|
},
|
|
|
|
// Custom JS - vacío para no cargar scripts innecesarios
|
|
customJs: [],
|
|
|
|
// Navigation
|
|
navigation: [
|
|
{ title: 'Inicio', path: './' },
|
|
{ title: 'Nosotros', path: './quienes-somos/' },
|
|
{ title: 'Contacto', path: './contacto/' },
|
|
{ title: 'Legal', path: './aviso-legal/' },
|
|
],
|
|
|
|
// SEO
|
|
plugins: {
|
|
seo: {
|
|
defaultDescription: 'DO CLOUD - Internet Cloud Services. Infraestructura cloud profesional, hosting, backup y seguridad gestionada.',
|
|
openGraph: {
|
|
defaultImage: 'assets/images/icon-512.png',
|
|
},
|
|
},
|
|
},
|
|
};
|