deploying via firebase

This commit is contained in:
2026-07-15 13:50:39 +01:00
parent 0d613be4db
commit d1d913b9e4
4 changed files with 38 additions and 1 deletions
+15
View File
@@ -0,0 +1,15 @@
robots.txt,1746949615199,391d14b3c2f8c9143a27a28c7399585142228d4d1bdbe2c87ac946de411fa9a2
manifest.json,1746949615198,9d0d8a3dc376c1ec6cb7ef0772d34916c0fd1bf0a1fbe7d98c7cfcfcacd03595
CNAME,1746949615194,2764ceef926ea469e7a54c5e3b7168f1e88574a6418b49d2f51740106794a4b1
index.html,1746949621196,b256df4b40144de127f022f62b51d4859361f8db3c18c5653fab5d178fa5b274
asset-manifest.json,1746949621196,67bcfbd3516316ab7ff36e851e3f848d57dbe9d2b52670f449f170ae44b02da5
static/js/main.545672d6.js.LICENSE.txt,1746949621200,0b2ce7b6dc96ec2e0333abbae71c700aba5e25d0b36326cdee85c5b4c8792e0b
static/js/453.2018e620.chunk.js,1746949621201,da04d7290e9ffc6675d95c1afd9a73388c7fcc8f7b8296e7972647a6193e4276
static/js/453.2018e620.chunk.js.map,1746949621200,a1463a0974ffb6483ff6d3c390ca6e6084682b0b02b74ae9bc3af41710a2a5ee
static/css/main.37814605.css.map,1746949621201,631abc9e245f1fd3294218e1101fa3cb7d2aa99a8e694a252578de891d4ffe58
favicon.ico,1746949615195,22b6a5712b51e36a193c91e386cf0915c9f18530098a34cdbad733e4f0f431f6
static/css/main.37814605.css,1746949621200,c08d7e180ae29d077237cb2042f448c4727d7901766096f8733c33e4bfe0e83e
logo192.png,1746949615196,415652e44d4a46b78caee33cd2295003544b7bb0cff48b61b7d162b60e222399
logo512.png,1746949615198,6a83d10eefb73eb801bfd0477a2670283cca292538635484ef57b433b0971d68
static/js/main.545672d6.js,1746949621200,5ac7dcedc8668cd7ec328ec919cc18aa5f3112a4dcdc58bc09682bdaff8cb965
static/js/main.545672d6.js.map,1746949621201,c95376007edd34d09a0665bb942698e9d389e6411cebd1c25f64857cbd5fba6e
+5
View File
@@ -0,0 +1,5 @@
{
"projects": {
"default": "itsamejms"
}
}
+1 -1
View File
@@ -9,4 +9,4 @@ A free customisable QR code generator written in react.
- `npm run build` to build the app
- `npm run start` to start the app
- `npm run deploy` to deploy the app
- `firebase deploy --only hosting:qr-code-jms` to deploy the app
+17
View File
@@ -0,0 +1,17 @@
{
"hosting": {
"site": "qr-code-jms",
"public": "build",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
],
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
]
}
}