Adam Goldsmith
d4dbaaf344
Couldn't get Vue/Vite to transpile for ios 8 correctly, and I don't really need it anyway...
11 lines
181 B
JavaScript
11 lines
181 B
JavaScript
module.exports = {
|
|
plugins: ['@babel/plugin-transform-runtime'],
|
|
presets: [
|
|
['@babel/preset-env', {
|
|
useBuiltIns: 'usage',
|
|
corejs: 3,
|
|
},
|
|
],
|
|
],
|
|
};
|