Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* eslint-disable no-unused-vars */
- const path = require("path");
- module.exports = {
- images: {
- unoptimized: true,
- },
- reactStrictMode: false,
- sassOptions: {
- includePaths: [path.join(__dirname, "./src/assets/scss")],
- },
- webpack: (config, { buildId, dev, isServer, defaultLoaders, webpack }) => {
- // eslint-disable-next-line no-param-reassign
- config.ignoreWarnings = [
- {
- message:
- /(magic-sdk|@walletconnect\/web3-provider|@web3auth\/web3auth)/,
- },
- ];
- return config;
- },
- };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement