@corejam/base
Version:
A scaffolding for building progressive GraphQL powered jamstack applications
24 lines • 412 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.getLayoutConfigGQL = exports.getSeoConfigGQL = void 0;
exports.getSeoConfigGQL = `
query {
config {
seo {
title
description
}
}
}
`;
exports.getLayoutConfigGQL = `
query {
config {
layout {
header
footer
}
}
}
`;
//# sourceMappingURL=Config.js.map