diff --git a/.node-version b/.node-version new file mode 100644 index 0000000..2dbbe00 --- /dev/null +++ b/.node-version @@ -0,0 +1 @@ +20.11.1 diff --git a/staticwebapp.config.json b/staticwebapp.config.json new file mode 100644 index 0000000..46cc0f4 --- /dev/null +++ b/staticwebapp.config.json @@ -0,0 +1,24 @@ +{ + "buildDetails": { + "appLocation": "/", + "apiLocation": "api", + "outputLocation": ".next", + "appBuildCommand": "npm run build", + "apiLanguage": "node", + "apiVersion": "20" + }, + "platformErrorOverrides": [ + { + "errorType": "NotFound", + "serve": "/404.html" + }, + { + "errorType": "Unauthenticated", + "statusCode": 401 + }, + { + "errorType": "Unauthorized", + "statusCode": 403 + } + ] +}