Adds a loading animation

This commit is contained in:
Alicia Sykes
2023-07-23 00:05:04 +01:00
parent 79afd4a46d
commit 573864baae
3 changed files with 104 additions and 2 deletions

View File

@@ -11,6 +11,14 @@ exports.handler = function(event, context, callback) {
}
const apiKey = process.env.GOOGLE_CLOUD_API_KEY;
if (!apiKey) {
callback(null, {
statusCode: 500,
body: JSON.stringify({ error: 'API key (GOOGLE_CLOUD_API_KEY) not set'}),
});
}
const endpoint = `https://www.googleapis.com/pagespeedonline/v5/runPagespeed?url=${encodeURIComponent(url)}&category=PERFORMANCE&category=ACCESSIBILITY&category=BEST_PRACTICES&category=SEO&category=PWA&strategy=mobile&key=${apiKey}`;
axios.get(endpoint)