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 347 B
Newer Older
  • Learn to ignore specific revisions
  • peter_rabbit's avatar
    peter_rabbit committed
    function getServerUrl() {
    
    Pierre Jarriges's avatar
    Pierre Jarriges committed
        return `${location.origin}${location.origin.charAt(location.origin.length - 1) !== "/" ? "/" : ""
            }`;
    
    peter_rabbit's avatar
    peter_rabbit committed
    }
    
    module.exports = {
        getServerUrl,
    
    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
    };