jiangwei小站
26 字
1 分钟
vite vue3上线配置
2024-06-02

vite.config.ts

defineConfig({
  base: "/",
});

nginx.conf

server {
    location / {
        try_files $uri $uri/ /index.html;
    }
}

注意: 访问的时候不能是 /index.html 是 /