Account created on 30 July 2019, over 5 years ago
#

Recent comments

Looks like all debug info is before the doctype html tag...

....
2025-03-26 10:05:50 SMTP ERROR: Password command failed: 535-5.7.8 Username and Password not accepted. For more information, go to535 5.7.8  https://support.google.com/mail/?p=BadCredentials 38308e7fff4ca-30d7d7fe8b9sm21048361fa.58 - gsmtp<br>
SMTP Error: Could not authenticate.<br>
2025-03-26 10:05:50 CLIENT -&gt; SERVER: QUIT<br>
2025-03-26 10:05:50 SMTP INBOUND: &quot;221 2.0.0 closing connection 38308e7fff4ca-30d7d7fe8b9sm21048361fa.58 - gsmtp&quot;<br>
2025-03-26 10:05:50 SERVER -&gt; CLIENT: 221 2.0.0 closing connection 38308e7fff4ca-30d7d7fe8b9sm21048361fa.58 - gsmtp<br>
2025-03-26 10:05:50 Connection: closed<br>
Invalid hostentry:  <br>
SMTP Error: Could not authenticate.<br>
<!DOCTYPE html>
<html>

...

Hello,

I had the same requirement today, after some research I managed to refresh the main.style.css adding serveStatic and rewriteRules to the current browserSync config:

mix.browserSync({
  proxy: proxy.proxy,  // remote/live site url
  files: [
    'build/js/**/*.js',
    'build/css/**/*.css',
    'build/components/**/*.css',
    'build/components/**/*.js',
    'src/**/*.twig',
    'templates/**/*.twig',
  ],
  stream: true,
  serveStatic: ['./build'],
  rewriteRules: [
    {
      match: new RegExp('/themes/custom/custom-theme-name/build/css/main.style.css'),
      fn: function () {
        return '/css/main.style.css';
      }
    }
  ]
});
Production build 0.71.5 2024