amenzai / myDiary

Record what you do every day
4 stars 0 forks source link

react + webpack 课程笔记 #62

Open amenzai opened 6 years ago

amenzai commented 6 years ago

react-webpack

不使用服务端渲染存在的问题:

如何使用服务端渲染? 在客户端使用 react-dom 的 render 方法渲染组件,而在服务端, react-dom/sever 提供我们将 react 组件渲染成 html 的方法

前端技术选型

考虑因素:

webapp 架构

web 开发常用网络优化

.......

amenzai commented 5 years ago

nginx 配置单页应用,使用路由的 history 模式:

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