Are you using elixir/gulp at all?
Where to place additional CSS file in Laravel?
I am trying to build a user interface first by integrating a front-end framework that has Less and Sass files. However, I would also like to add or include a New CSS file that will contain additional classes.
Note: I don't want to compile the New CSS file via gulp or elixir. I just want to include it in my Master Blade file.
Should i include it inside Resources/Assets directory or inside Public directory?
Please let me know. Any help is appreciated
Should i include it inside Resources/Assets directory or inside Public directory?
do you know what is the proper directory to place a custom css file?
if you don't want to compile and move it with eg Gulp, you should put it them to your public dir, eg
public -> assets -> css
public -> assets -> js
depending on the quantity or clear arrangement of css files you can break it down and use subdirectories as well, eg
... css -> less
... css -> sass
... css -> vendor
... css -> common
... css -> custom
Please or to participate in this conversation.