11 lines
180 B
Plaintext
11 lines
180 B
Plaintext
|
server {
|
||
|
listen 80;
|
||
|
server_name localhost;
|
||
|
|
||
|
root /dist;
|
||
|
|
||
|
location / {
|
||
|
try_files $uri $uri/ /index.html;
|
||
|
add_header Cache-Control 'no-store';
|
||
|
}
|
||
|
}
|