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
output: {
path: path.resolve(__dirname, 'dist'), // Note: Physical files are only output by the production build task `npm run build`.
publicPath: '/',
filename: 'bundle.js'
},
More specifically this: // Note: Physical files are only output by the production build task npm run build
So the question is, how do I make webpack create physical files in dev/? I need this to be able to serve my application through Flask (python) during development as well as production.