Static files not found with webpack and django
问题 The problem is that I can get access to the app on the browser but not static assets (js, jsx and images). Technologies I am using: django-webpack-loader 0.2.4 React 0.14 Django 1.8.5 Python 2.7 Part of Django settings for static files: 103 # Static files (CSS, JavaScript, Images) 104 # https://docs.djangoproject.com/en/1.8/howto/static-files/ 105 106 STATIC_URL = '/static/' 107 STATICFILES_DIRS = ( 108 os.path.join(BASE_DIR, 'assets'), 109 ) 110 111 WEBPACK_LOADER = { 112 'DEFAULT': { 113