Closed dongj0316 closed 2 years ago
vite.config.js
{ plugins: [ { ...esbuild({ target: 'chrome70', include: /\.(jsx|js|vue)$/, loaders: { '.vue': 'js', }, }), enforce: 'post', } ] }
There are compilation errors The solution is to modify main.ts, at line 110:
// result += `\nexport default /*#__PURE__*/(function () { return __component__.exports })()` result += `\nexport default (function () { return __component__.exports })()`
See pr said.
vite.config.js
There are compilation errors The solution is to modify main.ts, at line 110: