Intro: Gulp watches my css/js files till development mode on my local machine.
Then on production stage I upload all laravel project on production (live) server.
Problem: With all that gulp and elixir stuff installed laravel project becomes very heavy.
Question:
What files of node_modules
directory do I exactly need to load with project on production server to make Elixir works fine?
I mean including all.css
and all.js
files by
<link rel="stylesheet" href="{{ elixir('css/all.css') }}">
Maybe there is no need to load all of them?