Skip to content

Commit

Permalink
Merge pull request #36114 from software-mansion-labs/@kosmydel/fix-lo…
Browse files Browse the repository at this point in the history
…ttie-warning

[No QA] Ignore lottie warnings
  • Loading branch information
puneetlath authored Feb 12, 2024
2 parents f520f9c + c0fc24f commit 4ff5792
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion config/webpack/webpack.common.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,9 @@ const webpackConfig = ({envFile = '.env', platform = 'web'}) => ({
publicPath: '/',
},
stats: {
warningsFilter: [],
// We can ignore the "module not installed" warning from lottie-react-native
// because we are not using the library for JSON format of Lottie animations.
warningsFilter: ['./node_modules/lottie-react-native/lib/module/LottieView/index.web.js'],
},
plugins: [
new CleanWebpackPlugin(),
Expand Down

0 comments on commit 4ff5792

Please sign in to comment.