Azure / Azure/static-web-apps

Internal Server Error on pipeline run

Open
#746 1 comment 0 reactions 0 assignees View on GitHub
Dominant language
No language data
Stars
346
Forks
67
PR merge metrics
No merged PRs in 30d

Description

Hi, I'm trying to deploy my Angular static webapp through azure devops as a pipeline. The project works and builds with no issues locally but I'm encountering an Internal Server Error when I try to deploy it on Azure. This is the error message I get:

Screenshot 2022-03-04 at 11 37 10 AM

my pipeline (the default node.js pipeline except node version is changed to 14):
```
# Node.js with Angular
# Build a Node.js project that uses Angular.
# Add steps that analyze code, save build artifacts, deploy, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/javascript

trigger:
- master

pool:
vmImage: ubuntu-latest

steps:
- task: NodeTool@0
inputs:
versionSpec: '14.x'
displayName: 'Install Node.js'

- script: |
npm install -g @angular/cli
npm install
ng build --prod
displayName: 'npm install and build'
```

I would like to provide more information but there isn't anything else stated with the error.

Contributor guide

No contributing guide indexed for this repository

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.