We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd91dab commit be513f7Copy full SHA for be513f7
1 file changed
infrastructure/bicep/main.bicep
@@ -25,12 +25,12 @@ param clientId string
25
@description('App Service Plan SKU configuration')
26
param appServicePlanSku object = {
27
dev: {
28
- name: 'B1'
29
- tier: 'Basic'
+ name: 'F1'
+ tier: 'Free'
30
}
31
prod: {
32
33
34
35
36
@@ -297,7 +297,7 @@ resource webApp 'Microsoft.Web/sites@2023-12-01' = {
297
redundancyMode: 'None' // Disabled - some subscriptions don't support Manual redundancy
298
siteConfig: {
299
linuxFxVersion: 'NODE|20-lts' // Next.js 16 requires Node 20
300
- alwaysOn: environment == 'prod' ? true : false
+ alwaysOn: false // Free tier (F1) doesn't support alwaysOn
301
ftpsState: 'Disabled'
302
minTlsVersion: '1.2'
303
http20Enabled: true
0 commit comments