Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file added --paths
Empty file.
3 changes: 2 additions & 1 deletion .env
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
GITHUB_URL=https://api.github.com/
GITHUB_URL=https://api.github.com/
ITUNES_URL=https://itunes.apple.com/
3 changes: 2 additions & 1 deletion .env.development
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
GITHUB_URL=https://api.github.com/
GITHUB_URL=https://api.github.com/
ITUNES_URL=https://itunes.apple.com/
1 change: 1 addition & 0 deletions .env.local
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
GITHUB_URL=https://api.github.com/
ITUNES_URL=https://itunes.apple.com/
IS_LOCAL=true
5 changes: 3 additions & 2 deletions internals/webpack/webpack.config.base.js
Original file line number Diff line number Diff line change
Expand Up @@ -135,15 +135,16 @@ module.exports = (options) => ({
interlaced: false
},
optipng: {
enabled: false
enabled: false,
// NOTE: optipng is disabled as it causes errors in some Mac M1 & M2 environments
// Try enabling it in your environment by switching the config to:
// enabled: true,
// optimizationLevel: 7
},
pngquant: {
quality: [0.65, 0.9],
speed: 4
speed: 4,
enabled: false
},
webp: {
quality: 75
Expand Down