diff --git a/nginx/conf.d/default.conf b/nginx/conf.d/default.conf new file mode 100644 index 0000000..d6dee16 --- /dev/null +++ b/nginx/conf.d/default.conf @@ -0,0 +1,12 @@ +server { + listen 80; + root /app; + include mime.types; + types { + application/wasm wasm; + } + + location / { + index index.html; + } +}