首页  >  问答  >  正文

javascript - npm run build后调用api返回index.html

vue项目打包后生成static和index.html,然后配置nginx指向index.html,调用api的时候却返回index.html的内容

开发的时候不会出现这样的问题,vue里面配置了proxyTable转发api到3000端口,nginx也需要配置转发api吗?

阿神阿神2600 天前635

全部回复(1)我来回复

  • PHP中文网

    PHP中文网2017-05-16 17:09:25

    你nginxlocation配置有问题咯

    
    location / {
       
            index index.html; 
        }

    回复
    0
  • 取消回复