Skip to content
#

vite

Here are 3,051 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
aalexgabi
aalexgabi commented Mar 2, 2022

Clear and concise description of the problem

Error enumerable properties are not shown for test case:

import { test } from 'vitest';

test('throw error with context', () => {
  const err = new Error('This is an error with context');
  err.userId = 32;
  err.companyId = 64;
  throw err;
})

![image](https://user-images.githubusercontent.com/600821/156337522-c37b328b-6b28-

enhancement good first issue

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