/ firebase.json
firebase.json
 1  {
 2    "hosting": {
 3      "public": "src/dist",
 4      "ignore": [
 5        "firebase.json",
 6        "**/.*",
 7        "**/node_modules/**",
 8        "testing/**"
 9      ],
10      "cleanUrls": true,
11      "rewrites": [
12        {
13           "source": "/u/**",
14           "destination": "/u.html"
15        },
16        {
17           "source": "/note/**",
18           "destination": "/note.html"
19        },
20        {
21           "source": "/userstudio/**",
22           "destination": "/userstudio.html"
23        }
24      ]
25    }
26  }