Skip to content

Commit aba1731

Browse files
committed
improved doc and html
1 parent 12b0ac5 commit aba1731

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,4 +188,4 @@ After you have commited the changes to the workflow file, the CI/CD pipeline wil
188188

189189
## Azure Static Web App
190190

191-
Azure Static Web App supports a Free tier which is absolutely great so that you can try them for free, but of course don't expect great performances. REST API response will be in the 500 msec area. Keep this in mind if you are planning to use them for something different than testing. If you need better performance right now and cannot when for when Azure Static Web App will be out of preview, you can always deploy the REST API using plain Azure Functions where you can have amazing scalability and performance.
191+
Azure Static Web App supports a Free tier which is absolutely great so that you can try them for free, but of course don't expect great performances. Initial REST API response will be in the 500 msec area. Keep this in mind if you are planning to use them for something different than testing. If you need better performance right now and cannot when for when Azure Static Web App will be out of preview, you can always deploy the REST API using plain Azure Functions where you can have amazing scalability and performance.

client/client-graphql.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html>
33

44
<head>
5-
<title>TodoMVC</title>
5+
<title>TodoMVC - GraphQL</title>
66
<script src="https://unpkg.com/vue"></script>
77
<link rel="stylesheet" type="text/css" href="https://unpkg.com/todomvc-app-css@2.2.0/index.css" />
88
<style>
@@ -15,7 +15,7 @@
1515
<body>
1616
<section class="todoapp">
1717
<header class="header">
18-
<h1>todos</h1>
18+
<h1>GraphQL todos</h1>
1919
<input class="new-todo" autofocus autocomplete="off" placeholder="What needs to be done?" v-model="newTodo"
2020
@keyup.enter="addTodo" />
2121
</header>

client/client-rest.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html>
33

44
<head>
5-
<title>TodoMVC</title>
5+
<title>TodoMVC - REST</title>
66
<script src="https://unpkg.com/vue"></script>
77
<link rel="stylesheet" type="text/css" href="https://unpkg.com/todomvc-app-css@2.2.0/index.css" />
88
<style>
@@ -15,7 +15,7 @@
1515
<body>
1616
<section class="todoapp">
1717
<header class="header">
18-
<h1>todos</h1>
18+
<h1>REST todos</h1>
1919
<input class="new-todo" autofocus autocomplete="off" placeholder="What needs to be done?" v-model="newTodo"
2020
@keyup.enter="addTodo" />
2121
</header>

0 commit comments

Comments
 (0)