chore: update nginx config

This commit is contained in:
thehrz 2023-08-11 11:54:42 +08:00
parent 812f21fdab
commit 11855f1a21
Signed by: thehrz
GPG Key ID: C84CBCE7D5F88855
3 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
server { server {
listen 80; listen 80;
listen [::]:80 default_server http2; listen [::]:80;
return 444; return 444;
} }

View File

@ -14,6 +14,7 @@ server {
location / { location / {
root /usr/local/nginx/html/; root /usr/local/nginx/html/;
index index.html;
try_files $uri $uri/ /index.html; try_files $uri $uri/ /index.html;
} }
} }

1
src/components.d.ts vendored
View File

@ -20,7 +20,6 @@ declare module 'vue' {
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel'] VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels'] VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText'] VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
VIcon: typeof import('vuetify/components')['VIcon']
VImg: typeof import('vuetify/components')['VImg'] VImg: typeof import('vuetify/components')['VImg']
VList: typeof import('vuetify/components')['VList'] VList: typeof import('vuetify/components')['VList']
VListItem: typeof import('vuetify/components')['VListItem'] VListItem: typeof import('vuetify/components')['VListItem']