1.publicconfig.default.js
question: why http://localhost:9999 cannot directly access the front-end interface, and why I cannot find the http://localhost:9999/device_monitor path at the address.
1.publicconfig.default.js
question: why http://localhost:9999 cannot directly access the front-end interface, and why I cannot find the http://localhost:9999/device_monitor path at the address.
there is no route for'/ device_monitor''in the background, so it is 404 and can be equipped with a global matching route
router.get('/*', () => {
this.ctx.body = fs.createReadStream('index.htmlpath')
})
have you solved it yet?
Previous: After the rotate is rotated, how to keep the text in it from being deformed
Next: What should be done after receiving the value data passed by vue father and son?