Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

174
Views
Using absolute path vs relative path in webpack config

I am trying to learn Webpack and when I've watched some tutorials on youtube I have seen them use the path module to resolve an absolute path. Is this necessary? I tried using both of them and it seems that they are the same. The code from the tutorial looks something like this:

const path = require("path");
module.exports = {
  mode: "development",
  entry: { main: path.resolve(__dirname, "src/app.js") },
  output: {
    filename: "[name].[contenthash].js",
    clean: true,
  },
};

The code I tried (Which brought the same results):

module.exports = {
  mode: "development",
  entry: { main: "./src/app.js" },
  output: {
    filename: "[name].[contenthash].js",
    clean: true,
  },
};
about 4 years ago · Juan Pablo Isaza
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!