We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 01106ae commit 89aaf79Copy full SHA for 89aaf79
index.js
@@ -25,7 +25,10 @@ module.exports = function (b, opts) {
25
global: true,
26
toplevel: true,
27
// No need to mangle here, will do that at the end.
28
- mangle: false
+ mangle: false,
29
+ output: {
30
+ ascii_only: true
31
+ }
32
})
33
34
// Output a flat bundle, without function wrappers for each module.
@@ -34,7 +37,11 @@ module.exports = function (b, opts) {
37
b.plugin(commonShake)
35
38
36
39
// Minify the final output.
- var uglifyOpts = {}
40
+ var uglifyOpts = {
41
42
43
44
45
if (!b._options.debug) {
46
uglifyOpts.sourceMap = false
47
}
0 commit comments