Where can I set the options for @vue/babel-preset-app? #6913
Answered
by
screetBloom
jessegavin
asked this question in
Q&A
-
I have a particular need to be able to set different I am unsure how to do that. Is it in the
|
Beta Was this translation helpful? Give feedback.
Answered by
screetBloom
Jan 7, 2022
Replies: 1 comment 5 replies
-
You can specify browsers in A default Vue CLI project uses browserslist field in package.json. // package.json
{
"name": "vue-project",
"browserslist": [
"> 1%",
"last 2 versions",
"IE 10"
],
} |
Beta Was this translation helpful? Give feedback.
5 replies
Answer selected by
jessegavin
# for free
to join this conversation on GitHub.
Already have an account?
# to comment
You can specify browsers in
package.json browserslist
or.browserslistrc
A default Vue CLI project uses browserslist field in package.json.
@jessegavin