Skip to content

Commit e7cb8b4

Browse files
feat: Add ANALOG framework preset option
1 parent 4e87872 commit e7cb8b4

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/config/index.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ const config = {
1414
NEXTJS: './.next',
1515
CRA: './build',
1616
CSR: './',
17+
ANALOG: './dist/analog/public',
1718
ANGULAR: './dist',
1819
NUXT: './.output',
1920
ASTRO: './dist',
@@ -26,6 +27,7 @@ const config = {
2627
{ name: 'NextJs', value: 'NEXTJS' },
2728
{ name: 'CRA (Create React App)', value: 'CRA' },
2829
{ name: 'CSR (Client-Side Rendered)', value: 'CSR' },
30+
{ name: 'Analog', value: 'ANALOG' },
2931
{ name: 'Angular', value: 'ANGULAR' },
3032
{ name: 'Nuxt', value: 'NUXT' },
3133
{ name: 'Astro', value: 'ASTRO' },
@@ -49,7 +51,7 @@ const config = {
4951
VariablePreparationTypeOptions.SKIP_SETUP,
5052
],
5153
variableType: '',
52-
supportedFrameworksForServerCommands: ['ANGULAR', 'OTHER', 'REMIX', 'NUXT', 'ASTRO'],
54+
supportedFrameworksForServerCommands: ['ANALOG', 'ANGULAR', 'OTHER', 'REMIX', 'NUXT', 'ASTRO'],
5355
supportedFileUploadMethods: ['last file upload', 'new file']
5456

5557
};

0 commit comments

Comments
 (0)