Pour tout problème contactez-nous par mail : support@froggit.fr | La FAQ :grey_question: | Rejoignez-nous sur le Chat :speech_balloon:

Skip to content
Snippets Groups Projects
config.js 400 B
Newer Older
  • Learn to ignore specific revisions
  • peter_rabbit's avatar
    peter_rabbit committed
    function getServerUrl() {
        return `${location.origin}${
    
    peter_rabbit's avatar
    peter_rabbit committed
            location.origin.charAt(location.origin.length - 1) !== "/" ? "/" : ""
    
    peter_rabbit's avatar
    peter_rabbit committed
        }`;
    }
    
    module.exports = {
        getServerUrl,
        website_title: "Kuadrado website template",
    
    peter_rabbit's avatar
    peter_rabbit committed
        build: {
            protected_dirs: ["assets", "style", "articles"],
    
            default_meta_keys: ["title", "description", "image", "open_graph", "json_ld"],
    
    peter_rabbit's avatar
    peter_rabbit committed
        },
    
    peter_rabbit's avatar
    peter_rabbit committed
    };