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

24 lines
302 B
TypeScript
Raw Normal View History

2021-06-08 15:12:07 +00:00
export const TEMPLATES = [
2021-12-22 21:11:05 +00:00
{
title: 'Starter Kit (Generic)',
value: 'starter',
integrations: true,
2021-12-22 21:11:05 +00:00
},
{
title: 'Blog',
value: 'blog',
},
{
title: 'Documentation',
value: 'docs',
},
{
title: 'Portfolio',
value: 'portfolio',
},
{
title: 'Minimal',
value: 'minimal',
},
2021-06-08 15:12:07 +00:00
];