2
My Gulp functioned normally, from one hour to another began to present this error:
The archive /var/www/html/dna/public/css/app.css
is with permission 777.
Contents of the gulpfile.js file
var elixir = require('laravel-elixir');
elixir(function(mix) {
mix.sass('app.scss');
mix.styles(['normalize.css', 'flatcolors.css'], 'public/css/padrao.css')
.styles(['bootstrap.min.css'], 'public/css/bootstrap.css');
mix.scripts([ 'jquery-2.1.4.js',
'bootstrap.min.js',
'functions.js',
'ajax.js',
'jquery.blockUI.js'
]);
});
With the
chown
worked, thanks!– Amanda Lima
This +1 means it worked?
– Wallace Maxters
Yeah, it worked out :)
– Amanda Lima