前端小白成长之--用router的history,需要用node
作者:
Clover园 | 来源:发表于
2020-07-13 16:01 被阅读0次
一.node开启本地服务
image.png
const path = require('path')
// 导入处理 history 模式的模块
const history = require('connect-history-api-fallback')
// 导入 express
const express = require('express')
const app = express()
// 注册处理 history 模式的中间件
app.use(history())
// 处理静态资源的中间件,网站根目录 ../web
app.use(express.static(path.join(__dirname, '../web')))
// 开启服务器,端口是 3000
app.listen(3000, () => {
console.log('服务器开启,端口:3000')
})
控制台 nodemon .\app.js
浏览器[http://localhost:3000/](http://localhost:3000/)查看
二.nginx
image.png
image.png
ng配置
本文标题:前端小白成长之--用router的history,需要用node
本文链接:https://www.haomeiwen.com/subject/vvaacktx.html
网友评论