. Advertisement .
..3..
. Advertisement .
..4..
I am tired of fixing the problem: error: enoent: no such file or directory, uv_cwd in the javascript; even if I get the reference from another forum, it still returns an error:
path.js:1086
cwd = process.cwd();
^
Error: ENOENT: no such file or directory, uv_cwd
at Object.resolve (path.js:1086:25)
at Function.Module._resolveLookupPaths (internal/modules/cjs/loader.js:479:17)
at Function.Module._resolveFilename (internal/modules/cjs/loader.js:587:20)
To identify the problem, I will show you the detail here:
{
"name": "test_webpack",
"version": "1.0.0",
"description": "",
"private": true,
"scripts": {
"test": "echo "Error: no test specified" && exit 1",
"build": "webpack"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"clean-webpack-plugin": "^1.0.0",
"css-loader": "^1.0.1",
"csv-loader": "^3.0.2",
"file-loader": "^2.0.0",
"html-webpack-plugin": "^3.2.0",
"style-loader": "^0.23.1",
"webpack": "^4.25.1",
"webpack-cli": "^3.1.2",
"xml-loader": "^1.2.1"
},
"dependencies": {
"lodash": "^4.17.11"
}
}
const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin')
const CleanWebpackPlugin = require('clean-webpack-plugin')
module.exports = {
mode: 'development',
entry: {
app: './src/index.js',
print: './src/print.js',
sec: './src/secondClick.js'
},
devtool: 'inline-source-map',
plugins: [
new CleanWebpackPlugin(['dist']),
new HtmlWebpackPlugin({
titile: "Output manager from webpack n12"
})
],
output: {
filename: '[name].bundle.js',
path: path.resolve(__dirname, 'dist')
}
};
How do I do that? Could you support me in improving this problem?
The cause: You may be executing a git clone on the same directory in another terminal window, which is why the problem displays.
Solution: To solve the “error: enoent: no such file or directory, uv_cwd”, you can shut and reopen the terminal’s windows.
If it does not work, modify your
webpack.config
:Additionally, make ensure you execute the program from the project root using:
npx webpack --config webpack.config.js
It worked for me to close all terminal windows and open them again.
Reference