We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7977ec9 commit 961aa1aCopy full SHA for 961aa1a
appengine/standard/angular/app.yaml
@@ -1,21 +1,15 @@
1
-application: your-app-id
2
-version: 1
3
runtime: python27
4
threadsafe: true
5
api_version: 1
6
7
handlers:
8
-- url: /favicon\.ico
9
- static_files: favicon.ico
10
- upload: favicon\.ico
11
-
12
- url: /rest/.*
13
script: main.APP
14
15
-- url: (.*)/
16
- static_files: app\1/index.html
17
- upload: app
+- url: /(.+)
+ static_files: app/\1
+ upload: app/.*
18
19
-- url: (.*)
20
- static_files: app\1
21
+- url: /
+ static_files: app/index.html
+ upload: app/index.html
0 commit comments