My main.css
is not rendering,I am using multiple entry points in webpack.config.js
file
% load render_bundle from webpack_loader %}
<!DOCTYPE html>
<html>
<head>
<meta name='apple-mobile-web-app-capable' content='yes' />
<meta itemprop='name' content='TableGrabber Dashboard'>
{% render_bundle "main" "css" %}
{% render_bundle "vendors~main" "css" %}
<title>
{{ title }}
</title>
I expect my both app.js file will render and the routes written in them can be run by putting the URL in the browser
you forgotten to put
{% render_bundle 'back_office' 'js' %}
in the body of your part of the html fileyour file could look like this
and in the
webpack.config.js
you could have the entrypoints like