Skip to content
#

vite

Here are 2,976 public repositories matching this topic...

chenweil
chenweil commented Apr 21, 2021

Apache 部署GVA

部署版本

GVA 2.4.0

具体配置

VirtualHost 配置中加入:

    <Proxy /api>  
         Order deny,allow  
         Allow from all  
     </Proxy>  
     ProxyPass /api http://127.0.0.1:8888      
     ProxyPassReverse /api http://127.0.0.1:8888
此配置目的与 官方 nginx 提供配置类似。

注意

Apache 需要开启 proxy_module

http://127.0.0.1:8888 为后端默认地址,如已更改记得替换

good first issue
dar5hak
dar5hak commented Mar 22, 2022

Describe the bug

If I run Vitest in watch mode, it reports the number of tests passing or failing as expected. But if I delete a test file, the said numbers don't update.

Reproduction

Have two test files, say a.test.js and b.test.js. Each of them have one failing test, so we see 2 suites failing, 2 tests failing.

Now, we delete b.test.js. The status stays the same: 2 suites fai

Improve this page

Add a description, image, and links to the vite topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the vite topic, visit your repo's landing page and select "manage topics."

Learn more