mirror of
https://github.com/containous/traefik.git
synced 2024-12-23 17:34:13 +03:00
17 lines
265 B
JavaScript
17 lines
265 B
JavaScript
|
/* eslint-disable */
|
||
|
|
||
|
module.exports = api => {
|
||
|
return {
|
||
|
presets: [
|
||
|
[
|
||
|
'@quasar/babel-preset-app',
|
||
|
api.caller(caller => caller && caller.target === 'node')
|
||
|
? { targets: { node: 'current' } }
|
||
|
: {}
|
||
|
]
|
||
|
]
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|