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 -> SERVER: QUIT<br>
2025-03-26 10:05:50 SMTP INBOUND: "221 2.0.0 closing connection 38308e7fff4ca-30d7d7fe8b9sm21048361fa.58 - gsmtp"<br>
2025-03-26 10:05:50 SERVER -> 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>
...
🐛 | Multiple Registration | PHP 8.2 Deprecated function: Creation of dynamic property Drupal\multiple_registration\Plugin\Derivative\MultipleRegistrationLocalTasks::$base_plugin_id is deprecated
mikcat → created an issue.
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';
}
}
]
});