Browse Source

chore(@vben/docs): update nginx deployment error related documentation (#4702)

pull/4704/head
invalid w 1 year ago
committed by GitHub
parent
commit
625862e082
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 9
      docs/src/en/guide/other/faq.md
  2. 9
      docs/src/guide/other/faq.md

9
docs/src/en/guide/other/faq.md

@ -141,12 +141,19 @@ After deploying to `nginx`,you might encounter the following error:
Failed to load module script: Expected a JavaScript module script but the server responded with a MIME type of "application/octet-stream". Strict MIME type checking is enforced for module scripts per HTML spec. Failed to load module script: Expected a JavaScript module script but the server responded with a MIME type of "application/octet-stream". Strict MIME type checking is enforced for module scripts per HTML spec.
``` ```
Solution: Solution 1:
```bash ```bash
http { http {
#If there is such a configuration, it needs to be commented out
#include mime.types;
types { types {
application/javascript js mjs; application/javascript js mjs;
} }
} }
``` ```
Solution 2:
Open the `mime.types` file under `nginx` and change `application/javascript js;` to `application/javascript js mjs;`

9
docs/src/guide/other/faq.md

@ -141,12 +141,19 @@ at Extract (vue-vben-admin-main\node_modules@purge-icons\core\dist\index.js:173:
Failed to load module script: Expected a JavaScript module script but the server responded with a MIME type of "application/octet-stream". Strict MIME type checking is enforced for module scripts per HTML spec. Failed to load module script: Expected a JavaScript module script but the server responded with a MIME type of "application/octet-stream". Strict MIME type checking is enforced for module scripts per HTML spec.
``` ```
解决方式: 解决方式
```bash ```bash
http { http {
#如果有此项配置需要注释掉
#include mime.types;
types { types {
application/javascript js mjs; application/javascript js mjs;
} }
} }
``` ```
解决方式二:
进入 `nginx` 下的`mime.types`文件, 将`application/javascript js;` 修改为 `application/javascript js mjs;`

Loading…
Cancel
Save