You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using a version >2.8.0, minify turns import { lang as lang_import } from "./lang.js"; into import lang as lang_import from"./lang.js", which does not work in Firefox (Uncaught SyntaxError: missing keyword 'from' after import clause).
The problem is that minify removes the curly brackets.
The text was updated successfully, but these errors were encountered:
When using a version >2.8.0, minify turns
import { lang as lang_import } from "./lang.js";
intoimport lang as lang_import from"./lang.js"
, which does not work in Firefox (Uncaught SyntaxError: missing keyword 'from' after import clause).The problem is that minify removes the curly brackets.
The text was updated successfully, but these errors were encountered: