File tree 5 files changed +10
-0
lines changed
src/presets/implementations
5 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,8 @@ export class DocusaurusPreset implements IPresetBase {
6
6
'public-dir' : './build' ,
7
7
'static-dir' : undefined ,
8
8
spa : undefined ,
9
+ name : 'my-docusaurus-app' ,
10
+ description : 'Compute@Edge static site from docusaurus' ,
9
11
} ;
10
12
check ( ) {
11
13
return true ;
Original file line number Diff line number Diff line change @@ -6,6 +6,8 @@ export class GatsbyPreset implements IPresetBase {
6
6
'public-dir' : './public' ,
7
7
'static-dir' : undefined ,
8
8
spa : undefined ,
9
+ name : 'my-gatsby-app' ,
10
+ description : 'Compute@Edge static site from Gatsby' ,
9
11
} ;
10
12
check ( ) {
11
13
return true ;
Original file line number Diff line number Diff line change @@ -6,6 +6,8 @@ export class NextJsPreset implements IPresetBase {
6
6
'public-dir' : './out' ,
7
7
'static-dir' : undefined ,
8
8
spa : undefined ,
9
+ name : 'my-next-app' ,
10
+ description : 'Compute@Edge static site from Next.js' ,
9
11
} ;
10
12
check ( ) {
11
13
return true ;
Original file line number Diff line number Diff line change @@ -6,6 +6,8 @@ export class SvelteKitPreset implements IPresetBase {
6
6
'public-dir' : './dist' ,
7
7
'static-dir' : undefined ,
8
8
spa : undefined ,
9
+ name : 'my-sveltekit-app' ,
10
+ description : 'Compute@Edge static site from SvelteKit' ,
9
11
} ;
10
12
check ( ) {
11
13
return true ;
Original file line number Diff line number Diff line change @@ -6,6 +6,8 @@ export class VitePreset implements IPresetBase {
6
6
'public-dir' : './dist' ,
7
7
'static-dir' : undefined ,
8
8
spa : undefined ,
9
+ name : 'my-vite-app' ,
10
+ description : 'Compute@Edge static site from Vite' ,
9
11
} ;
10
12
check ( ) {
11
13
return true ;
You can’t perform that action at this time.
0 commit comments