forked from codesandbox/codesandbox-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnext.ts
More file actions
24 lines (23 loc) · 618 Bytes
/
next.ts
File metadata and controls
24 lines (23 loc) · 618 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import Template from './template';
import { decorateSelector } from '../utils/decorate-selector';
import configurations from './configuration';
export default new Template(
'next',
'Next.js',
'https://nextjs.org/',
'github/zeit/next.js/tree/master/examples/hello-world',
decorateSelector(() => '#ffffff'),
{
extraConfigurations: {
'/.babelrc': configurations.babelrc,
},
distDir: 'out',
netlify: false,
mainFile: ['/pages/index.js'],
backgroundColor: decorateSelector(() => '#000000'),
showOnHomePage: true,
main: true,
popular: true,
showCube: false,
}
);