Advertisement
qucha

Untitled

Oct 28th, 2023
30
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. /* eslint-disable no-unused-vars */
  2. const path = require("path");
  3.  
  4. module.exports = {
  5. images: {
  6. unoptimized: true,
  7. },
  8. reactStrictMode: false,
  9. sassOptions: {
  10. includePaths: [path.join(__dirname, "./src/assets/scss")],
  11. },
  12. webpack: (config, { buildId, dev, isServer, defaultLoaders, webpack }) => {
  13. // eslint-disable-next-line no-param-reassign
  14. config.ignoreWarnings = [
  15. {
  16. message:
  17. /(magic-sdk|@walletconnect\/web3-provider|@web3auth\/web3auth)/,
  18. },
  19. ];
  20. return config;
  21. },
  22. };
  23.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement