xxxxxxxxxx
npm i ngrok -g
> ngrok http port
//if error invalid host header
//try
ngrok http port -host-header="localhost:port"
xxxxxxxxxx
ngrok http 8080 -host-header="localhost:8080"
ngrok http --host-header=rewrite 8080
xxxxxxxxxx
ngrok http 8080 -host-header="localhost:8080"
ngrok http --host-header=rewrite 8080
xxxxxxxxxx
ngrok http 8080 -host-header="localhost:8080"
ngrok http --host-header=rewrite 8080
react icon
xxxxxxxxxx
import { FaBeer } from 'react-icons/fa';
class Question extends React.Component {
render() {
return <h3> Lets go for a <FaBeer />? </h3>
}
}