log4js-node icon indicating copy to clipboard operation
log4js-node copied to clipboard

[bug] Build with typescript

Open aitimate opened this issue 2 years ago • 3 comments

image

webpack.config.js

    resolve: {
        extensions: ['.tsx', '.ts', '.js'],
        fallback: {
            "fs": false
        }
    }

aitimate avatar May 30 '22 12:05 aitimate

Try adding "cluster": false and see if it helps?

webpack.config.js

    resolve: {
        extensions: ['.tsx', '.ts', '.js'],
        fallback: {
            "fs": false,
            "cluster": false
        }
    }

lamweili avatar May 30 '22 17:05 lamweili

@nil-one Let me know if you are still experiencing issues.

lamweili avatar Sep 15 '22 08:09 lamweili

@nil-one?

lamweili avatar Oct 02 '22 04:10 lamweili

Try adding "cluster": false and see if it helps?

webpack.config.js

    resolve: {
        extensions: ['.tsx', '.ts', '.js'],
        fallback: {
            "fs": false,
            "cluster": false
        }
    }

For me this fixed it!

amicoderozer avatar Nov 09 '22 16:11 amicoderozer