• home > tools > Bundler > vite >

    vite启动localhost:5000 responds with http status 403无法访问

    Author:zhoulujun Date:

    vite preview - the preconfigured localhost:5000 responds with http status 403 ,修改vite config ts,改为port端口,比如server: {port: 9003},

    vite preview - the preconfigured localhost:5000 responds with http status 403 #6481

    https://github.com/vitejs/vite/discussions/6481

    解决办法

    修改vite.config.ts,改为port端口

     server: {port: 9003},

    或者,修改package.json

    {
      "scripts": {
        "preview": "vite preview --port=8888"
      },}

    但是,为什么5000端口不可以访问,是403呢?


    转载本站文章《vite启动localhost:5000 responds with http status 403无法访问》,
    请注明出处:https://www.zhoulujun.cn/html/tools/Bundler/vite/8803.html