Adding CSS and Assets to webpack
Let's add CSS and assets to webpack.
We'll cover the following...
Importing files
We might want to use a lot of static file assets from Webpacker, such as images or fonts, in our code or CSS. We have to import them to get those assets into our pack file. Then Webpacker gives us some helper methods to be able to access the files. We need helper methods because bundling the images into the pack changes the name of the file, so we can’t simply use the raw file name.
First we need to import the static files. To do so, we need to add the following code to our application.js
. This code is a boilerplate ...