mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-11-23 15:47:53 -05:00
d18799d221
Update default og:image
20 lines
614 B
JavaScript
20 lines
614 B
JavaScript
module.exports = {
|
|
// Search and metadata
|
|
title: 'Imagine, Program, Share',
|
|
description:
|
|
'Scratch is a free programming language and online community ' +
|
|
'where you can create your own interactive stories, games, ' +
|
|
'and animations.',
|
|
|
|
// Open graph
|
|
og_image: 'https://scratch.mit.edu/images/scratch-og.png',
|
|
og_image_type: 'image/png',
|
|
og_image_width: 986,
|
|
og_image_height: 860,
|
|
|
|
// Analytics & Monitoring
|
|
ga_tracker: process.env.GA_TRACKER || '',
|
|
|
|
// Use minified JS libraries
|
|
min: (process.env.NODE_ENV === 'production') ? '.min' : ''
|
|
};
|