Giter VIP home page Giter VIP logo

Comments (15)

javaLuo avatar javaLuo commented on May 30, 2024

访问不到还是什么
你确定index.html文件是放在/dist下的吗
把文件放到服务器上,路由访问到 index.html就行

from react-luo.

zhans1993 avatar zhans1993 commented on May 30, 2024

index.html 和 dist 是同级,不在dist 下面

from react-luo.

javaLuo avatar javaLuo commented on May 30, 2024

能访问到index.html吗

from react-luo.

zhans1993 avatar zhans1993 commented on May 30, 2024

http://localhost:8082/dist/index.html 是可以访问到index.html 的

没有代理的工程 http://localhost:8888/home 可以访问到页面
代理的nginx http://localhost:8082/dist/home 页面错误 访问的资源是http://localhost:8082/dist/dist/app.d66600.js

from react-luo.

javaLuo avatar javaLuo commented on May 30, 2024

额,那是什么问题,无法加载JS和CSS吗?
把webpack.production.config.js中的输出配置改成这样:
`
output: {

    path: path.resolve(__dirname, 'build/dist'), 

    publicPath: 'dist/',

    filename: '[name].[hash:6].js',

    chunkFilename: '[name].[hash:6].chunk.js',

},

`

from react-luo.

zhans1993 avatar zhans1993 commented on May 30, 2024

是的,无法加载js 和css, 现在的output 就是这样配置的
就是js css 资源 多带一层 dist
webpack 配置就是用的你写的那个
主要是想nginx 代理之后 加一层 dist 字段分隔,不直接在端口下走路由
是不是工程需要改呢?

from react-luo.

javaLuo avatar javaLuo commented on May 30, 2024

等我配个nginx试一下

from react-luo.

javaLuo avatar javaLuo commented on May 30, 2024

没有问题额,我是这么配的
`
server {

listen 80;

server_name gd.isluo.com;

location / {

proxy_pass http://127.0.0.1:8888;

proxy_redirect off;

proxy_set_header Host $host;

proxy_set_header X-Real-IP $remote_addr;

proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;

}

error_page 404 500 502 503 504 /50x.html

location = /50x.html {

root html;

}

}
`

我在服务器上试的,用了Tomcat,Nginx代理到Tomcat.
我对Nginx也不是很了解。如果不行,你问下身边的后台程序员,后台程序员一般都知道这个。

from react-luo.

zhans1993 avatar zhans1993 commented on May 30, 2024

我知道这样配,问题是这样配的话一个程序就占用了一个端口,,端口有限 主要是希望 80/项目a
80/项目b 多个项目功用一个端口

from react-luo.

javaLuo avatar javaLuo commented on May 30, 2024

现在你这个路径访问不到 http://localhost:8082/dist/dist/app.d66600.js
是不是要配个静态文件访问路径什么的

from react-luo.

zhans1993 avatar zhans1993 commented on May 30, 2024

那么多资源总不能一个一个写吧,,而且怎么保证不和别的项目的资源冲突呢,就是这个愁啊

from react-luo.

javaLuo avatar javaLuo commented on May 30, 2024

就在你这个server{ } 里面再加一个:
location ~*/dist/{
root /dist/
}
就写一个,能访问到http://localhost:8082/dist/dist就行了
我不知道这样写对不对,大致是这个意思

from react-luo.

zhans1993 avatar zhans1993 commented on May 30, 2024

还是不行 ,我试试其他办法吧,你们项目不用nginx代理的么,有类似思路么。。谢谢
如果不代理的话,本地工程所有路由也加一层呢

from react-luo.

javaLuo avatar javaLuo commented on May 30, 2024

用的,但都是后台在处理。
我等会儿去问下后台是怎么弄的

from react-luo.

zhans1993 avatar zhans1993 commented on May 30, 2024

额,如果项目部署在服务器二级目录呢?

from react-luo.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.