Level 27
No, Laravel Mix does not depends on your folder structure.
You can specify the input and output path:
mix.combine([
'./resources/css/file-A.css',
'./resources/css/file-B.css',
], './resources/css/both.css');
1 like
Is it me or Laravel Mix can't combine plain css files inside /resources/css/ directory? It looks like it needs the files to be inside /public/<> directory.
Can someone confirm this or can this be changed?
Please or to participate in this conversation.