I don't have any errors with my code, but my localhost shows nothing, its all blank now. I don't know how to fix it
I previously had a bunch of random errors with fs, tls, net, path, zlib, http, https, stream, crypto. I looked up a help and found this so i added it to my code and it looks like this
fallback: {
"fs": false,
"tls": false,
"net": false,
"path": false,
"zlib": false,
"http": false,
"https": false,
"stream": false,
"crypto": false,
"crypto-browserify": require.resolve('crypto-browserify'), //if you want to use this module also don't forget npm i crypto-browserify
"./zlib_bindings": false,
async_hooks: false,
after that i had a problem with
WARNING in ./node_modules/express/lib/view.js 72:13-25 Critical dependency: the request of a dependency is an expression
after that i added
externals: {
express: 'express',
},
(all of this on 'webpack.config.js')