What does this __dirname even mean?
You might have seen this guy __dirname a couple of times, maybe in a webpack config like this
const path = require('path');
module.exports = {
entry: './src/index.js',
output: {
filename: 'bundle.js',
path: path.resolve(__dirname, ...
blog.sairaj.me3 min read