You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It should be emphasized that the location of this file will be relative to the src/ directory in the container as such
app/
server.js
src/
static/
So paths in server.js should take that into consideration, e.g.
importExpressfrom'express';importReactfrom'react';import{createStore}from'redux';import{Provider}from'react-redux';importcounterAppfrom'./src/reducers';// this is a path that needs to reference _src/_importAppfrom'./src/containers/App';// this is a path that needs to reference _src/_import{renderToString}from'react-dom/server';importqsfrom'qs';
This would allow any user to provide a custom path to their own server's entry point location.
Default value should be server.js
The text was updated successfully, but these errors were encountered: