Skip to content
#

vite

Here are 4,553 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
ffknob
ffknob commented Jun 15, 2022

Describe the bug

I'm having some trouble and need some advice on creating a TS class with private/protected readonly members and have it pass my vitest tests.

asset.ts

export enum AssetType {
  STOCK,
  CRYPTO,
}

export abstract class Asset {
  protected readonly _type: AssetType;
  protected readonly _symbol: string;
  protected readonly _name: string;
  protec
bug 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