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
In a monorepo with multiple apps the paths should not be hardcoded:
- `entry: ['webpack/hot/poll?100', './src/main.ts']` should be `entry: ['webpack/hot/poll?100', './apps/appname/src/main.ts']`
- `new StartServerPlugin({ name: 'main.js' })` should be `new StartServerPlugin({ name: 'apps/appname/main.js' })`
Depending on which app has been started.
0 commit comments