-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ulog doesn't work in Safari #63
Comments
Sorry for taking long to reply. I just got a new job and have been swamped with work. I am unfortunately not able to easily test in Safari since I own no mac or iPhone. I am guessing this error maybe actually comes from kurly which uses a regex to parse the |
I can't help you more I sent above. I don't understand how to know which file/line causes the error because Webpack magnled it.... But we can meet in Teams/whatever and you can try it on my desktop to decrypt the root cause. |
You can (temporarily) disable minification: webpack.config.js module.exports = {
// ...
optimization: {
minimize: false,
minimizer: [
new TerserPlugin({
extractComments: false,
}),
],
},
}
That could also work. What timezone are you in? |
When you found the line, you could try hacking the bundle.js to see if you can fix it. That way you can quickly test changes. |
In Safari, webpage using ulog crash with
SyntaxError: Invalid regular expression: invalid group specifier name
error in console.For example, in my case, the webapp will not render at all (web page is blank). It looks that it because ulog uses regex lookbehind not supported in Safari at all (even latest 14). It must be a long standing bug. I tried 1.5 year old versions with the same result.
I'm not able to tell you more. Because it makes our web app completely unusable for Mac users, we have to replace ulog with alternative. However, here are screenshots just before replacing ulog.
The text was updated successfully, but these errors were encountered: