astro/packages/create-astro/src/templates.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
298 B
TypeScript
Raw Normal View History

2021-06-08 15:12:07 +00:00
export const TEMPLATES = [
{
title: 'Just the basics (recommended)',
value: 'basics',
2021-06-08 15:12:07 +00:00
},
{
title: 'Blog',
value: 'blog',
},
{
title: 'Portfolio',
value: 'portfolio',
},
2021-08-15 19:13:58 +00:00
{
title: 'Documentation Site',
value: 'docs',
},
{
title: 'Empty project',
2021-08-15 19:13:58 +00:00
value: 'minimal',
},
2021-06-08 15:12:07 +00:00
];