Skip to content

Commit

Permalink
Modernize browser targets
Browse files Browse the repository at this point in the history
  • Loading branch information
GarboMuffin committed Jan 11, 2024
1 parent d8a51ec commit 62c0f26
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,14 @@ module.exports = [
module: {
rules: [{
options: {
presets: [['env', {targets: {browsers: ['last 3 versions', 'Safari >= 8', 'iOS >= 8']}}]]
presets: [['env', {targets: {browsers: [
'chrome >= 70',
'chromeandroid >= 70',
'ios >= 12',
'safari >= 12',
'edge >= 18',
'firefox >= 68'
]}}]]
}
}]
},
Expand Down

0 comments on commit 62c0f26

Please sign in to comment.