what is @ atsign in first of file path nodejs

JavaScript
  const path = require('path');

  ...
  resolve: {
    extensions: ['.js', '.vue', '.json'],
    alias: {
      ...
      '@': path.resolve('src'),
    }
  },
  ...

Source

Also in JavaScript: