Eric Lu
Eric Lu
Try `./node_modules/.bin/gulp` instead.
@ngosang I used the method that you suggested, but I encountered the browser check by Cloudflare. So then, I ironically had to utilize Puppeteer directly to make the POST request...
By default, the only modules that are recognized in `node_modules` are indicated in [https://github.com/erikras/react-redux-universal-hot-example/blob/master/webpack/dev.config.js#L101](https://github.com/erikras/react-redux-universal-hot-example/blob/master/webpack/dev.config.js#L101) for development mode. So let's say if you want `import 'react-bootstrap-datetimepicker/css/bootstrap-datetimepicker.min.css';` to work, you will need...
```javascript import { AmplifyPagination } from 'ra-aws-amplify' export const PostList = props => { const nextToken = useSelector(state => state.nextToken); return } ``` The `nextToken` shouldn't be inserted into the...
I'm using a quick workaround by doing this: ```javascript import { AmplifyPagination } from 'ra-aws-amplify' export const PostList = props => { const [nextToken, setNextToken] = useState(null); return } filter={{nextToken}}...
Same here