feat: add netlify and nginx configuration

This commit is contained in:
AkagiYui 2024-03-13 01:16:08 +08:00
parent ecdda0708c
commit 4a7a327eaa
2 changed files with 7 additions and 0 deletions

4
netlify.toml Normal file
View File

@ -0,0 +1,4 @@
[[redirects]]
from = "/*"
to = "/index.html"
status = 200

3
nginx.conf Normal file
View File

@ -0,0 +1,3 @@
location / {
try_files $uri $uri/ /index.html;
}