اذهب إلى المحتوى

منتصر احمد

الأعضاء
  • المساهمات

    760
  • تاريخ الانضمام

  • تاريخ آخر زيارة

  • عدد الأيام التي تصدر بها

    9

كل منشورات العضو منتصر احمد

  1. لقد ارسلت طلب توثيق الهويه امس وللان لم يتم الرد علي
  2. ازاي اطور من مهارت البحث والتفكير المنطقي
  3. انا خلصت كورس تطوير واجهات المستخدم في اكاديمية حسوب واخذت الشهاده هل في اي حاجه زياده ممكن اتعلمها + ازاي اطور من مهارت البحث والتفكير المنطقي
  4. انا حطيت الوجه الامامي والوجه الخلفي لبطاقة والدي ولكن لا اعرف اين احط شهادة ميلادي
  5. انا عندي 13 سنه
  6. مرحبًا محمد، أبارك لك إنهاءك لإجراءات الامتحان وانتقالك إلى مرحلة إصدار الشهادة. قبل إصدار الشهادة نحتاج منك إلى توثيق حسابك في حسوب، أرجو أن تراجع هذا الرابط لتعرف المزيد عن كيفية فعل ذلك: https://support.hsoub.com/verify-identity ولعدم وجود هوية لديك، فسنحتاج منك إلى توثيق الحساب بهوية والدك، وشهادة الميلاد سويةً وسنعتمد اسمك الموجود في شهادة الميلاد. إذا كان لديك جواز سفر فالأفضل التوثيق به وكتابة الاسم الإنكليزي كاملًا. بانتظارك ومبارك مرة أخرى، انا حطيت صورة بطاقة ابويا ومش عارف احط شهادة الميلاد فين ممكن مساعده
  7. ممكن تقول كمان مثال علي ال map غير الارقام
  8. ما هو استخدام map method وما الفرق بينها وبين forEach method
  9. كيف اصبح محترفا في لغة ال javascript مع انني تدربت كثيرا عليها لكن مازلت اشعر انني ضعيف فيها
  10. شكرا جدا ولكن هل يمكنك شرح ماذا كانت المشكله
  11. webpack.config.js: const path = require("path"); const HtmlWebpackPlugin = require("html-webpack-plugin"); const { CleanWebpackPlugin } = require("clean-webpack-plugin"); const MiniCssExtractPlugin = require("mini-css-extract-plugin"); const webpack = require("webpack"); module.exports = { devServer: { contentBase: path.join(__dirname, "./dist"), port: 1233, overlay: true, //for errors writeToDisk: true, }, entry: { app: "./src/index.js", }, output: { filename: "[name].js", path: path.resolve(__dirname, "./dist"), assetModuleFilename: "images/[name].[ext]", }, // loaders module: { rules: [ { test: /\.html$/i, loader: "html-loader", }, { test: /\.(sa|sc|c)ss$/i, use: [ MiniCssExtractPlugin.loader, // Translates CSS into CommonJS "css-loader", // Compiles Sass to CSS "sass-loader", ], }, { test: /.*\.(gif|png|jpe?g|svg)$/i, use: [ { loader: "file-loader", options: { name: "[name].[ext]", // المسار المراد رفع الصور عليه }, }, ], }, ], }, // plugins plugins: [ new CleanWebpackPlugin(), new HtmlWebpackPlugin({ template: "./src/index.html", filename: "index.html", }), new HtmlWebpackPlugin({ template: "./src/about.html", filename: "about.html", }), new HtmlWebpackPlugin({ template: "./src/contact_us.html", filename: "contact_us.html", }), new HtmlWebpackPlugin({ template: "./src/product_one.html", filename: "product_one.html", }), new HtmlWebpackPlugin({ template: "./src/product_two.html", filename: "product_two.html", }), new HtmlWebpackPlugin({ template: "./src/product_three.html", filename: "product_three.html", }), new HtmlWebpackPlugin({ template: "./src/distributors.html", filename: "distributors.html", }), new MiniCssExtractPlugin({ filename: "css/style.css" }), new webpack.ProvidePlugin({ $: "jquery", jQuery: "jquery", }), new webpack.LoaderOptionsPlugin({ options: { webpack: { hashFilenames: false, }, }, }), ], }; package.json: { "name": "testing", "version": "1.0.0", "description": "", "main": "index.js", "scripts": { "build": "webpack serve --mode production" }, "keywords": [], "author": "", "license": "ISC", "devDependencies": { "@fortawesome/fontawesome-free": "^6.1.1", "bootstrap": "^5.1.3", "clean-webpack-plugin": "^4.0.0", "css-loader": "^6.7.1", "file-loader": "^6.2.0", "html-webpack-plugin": "^5.5.0", "html-loader": "^1.3.2", "jquery": "^3.6.0", "jquery-ui-touch-punch": "^0.2.3", "mini-css-extract-plugin": "^2.6.0", "popper.js": "^1.16.1", "sass": "^1.50.0", "sass-loader": "^12.6.0", "style-loader": "^3.3.1", "sweetalert2": "^11.4.8", "webpack": "^5.72.0", "webpack-cli": "^4.9.2", "webpack-dev-server": "^3.11.0", "webpack-jquery-ui": "^2.0.1" } }
  12. الصور في webpack لا تظهر مع ان الامتداد صحيح والتنتقل الي مجلد dist
  13. Error: Prevent writing to file that only differs in casing or query string from already written file. This will lead to a race-condition and corrupted files on case-insensitive file systems. C:\Users\70DA\Desktop\testing\dist\images\product_one_image_one.jpg C:\Users\70DA\Desktop\testing\dist\images\product_one_image_one.jpg at checkSimilarFile (C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\Compiler.js:666:11) at writeOut (C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\Compiler.js:848:11) at C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\util\fs.js:242:5 at FSReqCallback.oncomplete (node:fs:188:23)
  14. ERROR in Conflict: Multiple assets emit different content to the same filename images/image2.jpg ERROR in Conflict: Multiple assets emit different content to the same filename images/image2.jpg ERROR in Conflict: Multiple assets emit different content to the same filename images/image2.jpg ERROR in Conflict: Multiple assets emit different content to the same filename images/image2.jpg ERROR in Conflict: Multiple assets emit different content to the same filename images/image1.jpg ERROR in Conflict: Multiple assets emit different content to the same filename images/image1.jpg ERROR in Conflict: Multiple assets emit different content to the same filename images/image3.jpg ERROR in Conflict: Multiple assets emit different content to the same filename images/image1.jpg ERROR in Conflict: Multiple assets emit different content to the same filename images/image3.jpg ERROR in Conflict: Multiple assets emit different content to the same filename images/image1.jpg ERROR in Conflict: Multiple assets emit different content to the same filename images/image3.jpg ERROR in Error: Child compilation failed: Conflict: Multiple assets emit different content to the same filename images/image2.jpg Error: Conflict: Multiple assets emit different content to the same filename images/image2.jpg at Compilation.emitAsset (C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\Compilation.js:4243:6) at Compilation.createModuleAssets (C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\Compilation.js:4493:11) at C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\Compilation.js:3052:13 at C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\Compilation.js:3277:6 at C:\Users\70DA\Desktop\testing\node_modules\neo-async\async.js:2818:7 at done (C:\Users\70DA\Desktop\testing\node_modules\neo-async\async.js:3522:9) at C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\Compilation.js:3240:8 at C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\Compilation.js:3349:32 at C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\HookWebpackError.js:68:3 at Hook.eval [as callAsync] (eval at create (C:\Users\70DA\Desktop\testing\node_modules\tapable\lib\HookCodeFactory.js:33:10), <anonymous>:15:1) Conflict: Multiple assets emit different content to the same filename images/image2.jpg Error: Conflict: Multiple assets emit different content to the same filename images/image2.jpg at Compilation.emitAsset (C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\Compilation.js:4243:6) at Compilation.createModuleAssets (C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\Compilation.js:4493:11) at C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\Compilation.js:3052:13 at C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\Compilation.js:3277:6 at C:\Users\70DA\Desktop\testing\node_modules\neo-async\async.js:2818:7 at done (C:\Users\70DA\Desktop\testing\node_modules\neo-async\async.js:3522:9) at C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\Compilation.js:3240:8 at C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\Compilation.js:3349:32 at C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\HookWebpackError.js:68:3 at Hook.eval [as callAsync] (eval at create (C:\Users\70DA\Desktop\testing\node_modules\tapable\lib\HookCodeFactory.js:33:10), <anonymous>:15:1) - Compilation.js:4243 Compilation.emitAsset [testing]/[webpack]/lib/Compilation.js:4243:6 - Compilation.js:4493 Compilation.createModuleAssets [testing]/[webpack]/lib/Compilation.js:4493:11 - Compilation.js:3052 [testing]/[webpack]/lib/Compilation.js:3052:13 - Compilation.js:3277 [testing]/[webpack]/lib/Compilation.js:3277:6 - async.js:2818 [testing]/[neo-async]/async.js:2818:7 - async.js:3522 done [testing]/[neo-async]/async.js:3522:9 - Compilation.js:3240 [testing]/[webpack]/lib/Compilation.js:3240:8 - Compilation.js:3349 [testing]/[webpack]/lib/Compilation.js:3349:32 - HookWebpackError.js:68 [testing]/[webpack]/lib/HookWebpackError.js:68:3 - Conflict: Multiple assets emit different content to the same filename images/image2.jpg - Error: Conflict: Multiple assets emit different content to the same filename images/image2.jpg - Compilation.js:4243 Compilation.emitAsset [testing]/[webpack]/lib/Compilation.js:4243:6 - Compilation.js:4493 Compilation.createModuleAssets [testing]/[webpack]/lib/Compilation.js:4493:11 - Compilation.js:3052 [testing]/[webpack]/lib/Compilation.js:3052:13 - Compilation.js:3277 [testing]/[webpack]/lib/Compilation.js:3277:6 - async.js:2818 [testing]/[neo-async]/async.js:2818:7 - async.js:3522 done [testing]/[neo-async]/async.js:3522:9 - Compilation.js:3240 [testing]/[webpack]/lib/Compilation.js:3240:8 - Compilation.js:3349 [testing]/[webpack]/lib/Compilation.js:3349:32 - HookWebpackError.js:68 [testing]/[webpack]/lib/HookWebpackError.js:68:3 - child-compiler.js:169 [testing]/[html-webpack-plugin]/lib/child-compiler.js:169:18 - Compiler.js:551 finalCallback [testing]/[webpack]/lib/Compiler.js:551:5 - Compiler.js:577 [testing]/[webpack]/lib/Compiler.js:577:11 - Compiler.js:1196 [testing]/[webpack]/lib/Compiler.js:1196:17 - Hook.js:18 Hook.CALL_ASYNC_DELEGATE [as _callAsync] [testing]/[tapable]/lib/Hook.js:18:14 - Compiler.js:1192 [testing]/[webpack]/lib/Compiler.js:1192:33 - Compilation.js:2787 finalCallback [testing]/[webpack]/lib/Compilation.js:2787:11 - Compilation.js:3092 [testing]/[webpack]/lib/Compilation.js:3092:11 ERROR in Error: Child compilation failed: Conflict: Multiple assets emit different content to the same filename images/image2.jpg Error: Conflict: Multiple assets emit different content to the same filename images/image2.jpg at Compilation.emitAsset (C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\Compilation.js:4243:6) at Compilation.createModuleAssets (C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\Compilation.js:4493:11) at C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\Compilation.js:3052:13 at C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\Compilation.js:3277:6 at C:\Users\70DA\Desktop\testing\node_modules\neo-async\async.js:2818:7 at done (C:\Users\70DA\Desktop\testing\node_modules\neo-async\async.js:3522:9) at C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\Compilation.js:3240:8 at C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\Compilation.js:3349:32 at C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\HookWebpackError.js:68:3 at Hook.eval [as callAsync] (eval at create (C:\Users\70DA\Desktop\testing\node_modules\tapable\lib\HookCodeFactory.js:33:10), <anonymous>:15:1) Conflict: Multiple assets emit different content to the same filename images/image2.jpg Error: Conflict: Multiple assets emit different content to the same filename images/image2.jpg at Compilation.emitAsset (C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\Compilation.js:4243:6) at Compilation.createModuleAssets (C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\Compilation.js:4493:11) at C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\Compilation.js:3052:13 at C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\Compilation.js:3277:6 at C:\Users\70DA\Desktop\testing\node_modules\neo-async\async.js:2818:7 at done (C:\Users\70DA\Desktop\testing\node_modules\neo-async\async.js:3522:9) at C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\Compilation.js:3240:8 at C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\Compilation.js:3349:32 at C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\HookWebpackError.js:68:3 at Hook.eval [as callAsync] (eval at create (C:\Users\70DA\Desktop\testing\node_modules\tapable\lib\HookCodeFactory.js:33:10), <anonymous>:15:1) - Compilation.js:4243 Compilation.emitAsset [testing]/[webpack]/lib/Compilation.js:4243:6 - Compilation.js:4493 Compilation.createModuleAssets [testing]/[webpack]/lib/Compilation.js:4493:11 - Compilation.js:3052 [testing]/[webpack]/lib/Compilation.js:3052:13 - Compilation.js:3277 [testing]/[webpack]/lib/Compilation.js:3277:6 - async.js:2818 [testing]/[neo-async]/async.js:2818:7 - async.js:3522 done [testing]/[neo-async]/async.js:3522:9 - Compilation.js:3240 [testing]/[webpack]/lib/Compilation.js:3240:8 - Compilation.js:3349 [testing]/[webpack]/lib/Compilation.js:3349:32 - HookWebpackError.js:68 [testing]/[webpack]/lib/HookWebpackError.js:68:3 - Conflict: Multiple assets emit different content to the same filename images/image2.jpg - Error: Conflict: Multiple assets emit different content to the same filename images/image2.jpg - Compilation.js:4243 Compilation.emitAsset [testing]/[webpack]/lib/Compilation.js:4243:6 - Compilation.js:4493 Compilation.createModuleAssets [testing]/[webpack]/lib/Compilation.js:4493:11 - Compilation.js:3052 [testing]/[webpack]/lib/Compilation.js:3052:13 - Compilation.js:3277 [testing]/[webpack]/lib/Compilation.js:3277:6 - async.js:2818 [testing]/[neo-async]/async.js:2818:7 - async.js:3522 done [testing]/[neo-async]/async.js:3522:9 - Compilation.js:3240 [testing]/[webpack]/lib/Compilation.js:3240:8 - Compilation.js:3349 [testing]/[webpack]/lib/Compilation.js:3349:32 - HookWebpackError.js:68 [testing]/[webpack]/lib/HookWebpackError.js:68:3 - child-compiler.js:169 [testing]/[html-webpack-plugin]/lib/child-compiler.js:169:18 - Compiler.js:551 finalCallback [testing]/[webpack]/lib/Compiler.js:551:5 - Compiler.js:577 [testing]/[webpack]/lib/Compiler.js:577:11 - Compiler.js:1196 [testing]/[webpack]/lib/Compiler.js:1196:17 - Hook.js:18 Hook.CALL_ASYNC_DELEGATE [as _callAsync] [testing]/[tapable]/lib/Hook.js:18:14 - Compiler.js:1192 [testing]/[webpack]/lib/Compiler.js:1192:33 - Compilation.js:2787 finalCallback [testing]/[webpack]/lib/Compilation.js:2787:11 - Compilation.js:3092 [testing]/[webpack]/lib/Compilation.js:3092:11 ERROR in Error: Child compilation failed: Conflict: Multiple assets emit different content to the same filename images/image2.jpg Error: Conflict: Multiple assets emit different content to the same filename images/image2.jpg at Compilation.emitAsset (C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\Compilation.js:4243:6) at Compilation.createModuleAssets (C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\Compilation.js:4493:11) at C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\Compilation.js:3052:13 at C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\Compilation.js:3277:6 at C:\Users\70DA\Desktop\testing\node_modules\neo-async\async.js:2818:7 at done (C:\Users\70DA\Desktop\testing\node_modules\neo-async\async.js:3522:9) at C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\Compilation.js:3240:8 at C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\Compilation.js:3349:32 at C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\HookWebpackError.js:68:3 at Hook.eval [as callAsync] (eval at create (C:\Users\70DA\Desktop\testing\node_modules\tapable\lib\HookCodeFactory.js:33:10), <anonymous>:15:1) Conflict: Multiple assets emit different content to the same filename images/image2.jpg Error: Conflict: Multiple assets emit different content to the same filename images/image2.jpg at Compilation.emitAsset (C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\Compilation.js:4243:6) at Compilation.createModuleAssets (C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\Compilation.js:4493:11) at C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\Compilation.js:3052:13 at C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\Compilation.js:3277:6 at C:\Users\70DA\Desktop\testing\node_modules\neo-async\async.js:2818:7 at done (C:\Users\70DA\Desktop\testing\node_modules\neo-async\async.js:3522:9) at C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\Compilation.js:3240:8 at C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\Compilation.js:3349:32 at C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\HookWebpackError.js:68:3 at Hook.eval [as callAsync] (eval at create (C:\Users\70DA\Desktop\testing\node_modules\tapable\lib\HookCodeFactory.js:33:10), <anonymous>:15:1) - Compilation.js:4243 Compilation.emitAsset [testing]/[webpack]/lib/Compilation.js:4243:6 - Compilation.js:4493 Compilation.createModuleAssets [testing]/[webpack]/lib/Compilation.js:4493:11 - Compilation.js:3052 [testing]/[webpack]/lib/Compilation.js:3052:13 - Compilation.js:3277 [testing]/[webpack]/lib/Compilation.js:3277:6 - async.js:2818 [testing]/[neo-async]/async.js:2818:7 - async.js:3522 done [testing]/[neo-async]/async.js:3522:9 - Compilation.js:3240 [testing]/[webpack]/lib/Compilation.js:3240:8 - Compilation.js:3349 [testing]/[webpack]/lib/Compilation.js:3349:32 - HookWebpackError.js:68 [testing]/[webpack]/lib/HookWebpackError.js:68:3 - Conflict: Multiple assets emit different content to the same filename images/image2.jpg - Error: Conflict: Multiple assets emit different content to the same filename images/image2.jpg - Compilation.js:4243 Compilation.emitAsset [testing]/[webpack]/lib/Compilation.js:4243:6 - Compilation.js:4493 Compilation.createModuleAssets [testing]/[webpack]/lib/Compilation.js:4493:11 - Compilation.js:3052 [testing]/[webpack]/lib/Compilation.js:3052:13 - Compilation.js:3277 [testing]/[webpack]/lib/Compilation.js:3277:6 - async.js:2818 [testing]/[neo-async]/async.js:2818:7 - async.js:3522 done [testing]/[neo-async]/async.js:3522:9 - Compilation.js:3240 [testing]/[webpack]/lib/Compilation.js:3240:8 - Compilation.js:3349 [testing]/[webpack]/lib/Compilation.js:3349:32 - HookWebpackError.js:68 [testing]/[webpack]/lib/HookWebpackError.js:68:3 - child-compiler.js:169 [testing]/[html-webpack-plugin]/lib/child-compiler.js:169:18 - Compiler.js:551 finalCallback [testing]/[webpack]/lib/Compiler.js:551:5 - Compiler.js:577 [testing]/[webpack]/lib/Compiler.js:577:11 - Compiler.js:1196 [testing]/[webpack]/lib/Compiler.js:1196:17 - Hook.js:18 Hook.CALL_ASYNC_DELEGATE [as _callAsync] [testing]/[tapable]/lib/Hook.js:18:14 - Compiler.js:1192 [testing]/[webpack]/lib/Compiler.js:1192:33 - Compilation.js:2787 finalCallback [testing]/[webpack]/lib/Compilation.js:2787:11 - Compilation.js:3092 [testing]/[webpack]/lib/Compilation.js:3092:11 ERROR in Error: Child compilation failed: Conflict: Multiple assets emit different content to the same filename images/image2.jpg Error: Conflict: Multiple assets emit different content to the same filename images/image2.jpg at Compilation.emitAsset (C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\Compilation.js:4243:6) at Compilation.createModuleAssets (C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\Compilation.js:4493:11) at C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\Compilation.js:3052:13 at C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\Compilation.js:3277:6 at C:\Users\70DA\Desktop\testing\node_modules\neo-async\async.js:2818:7 at done (C:\Users\70DA\Desktop\testing\node_modules\neo-async\async.js:3522:9) at C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\Compilation.js:3240:8 at C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\Compilation.js:3349:32 at C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\HookWebpackError.js:68:3 at Hook.eval [as callAsync] (eval at create (C:\Users\70DA\Desktop\testing\node_modules\tapable\lib\HookCodeFactory.js:33:10), <anonymous>:15:1) Conflict: Multiple assets emit different content to the same filename images/image2.jpg Error: Conflict: Multiple assets emit different content to the same filename images/image2.jpg at Compilation.emitAsset (C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\Compilation.js:4243:6) at Compilation.createModuleAssets (C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\Compilation.js:4493:11) at C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\Compilation.js:3052:13 at C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\Compilation.js:3277:6 at C:\Users\70DA\Desktop\testing\node_modules\neo-async\async.js:2818:7 at done (C:\Users\70DA\Desktop\testing\node_modules\neo-async\async.js:3522:9) at C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\Compilation.js:3240:8 at C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\Compilation.js:3349:32 at C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\HookWebpackError.js:68:3 at Hook.eval [as callAsync] (eval at create (C:\Users\70DA\Desktop\testing\node_modules\tapable\lib\HookCodeFactory.js:33:10), <anonymous>:15:1) - Compilation.js:4243 Compilation.emitAsset [testing]/[webpack]/lib/Compilation.js:4243:6 - Compilation.js:4493 Compilation.createModuleAssets [testing]/[webpack]/lib/Compilation.js:4493:11 - Compilation.js:3052 [testing]/[webpack]/lib/Compilation.js:3052:13 - Compilation.js:3277 [testing]/[webpack]/lib/Compilation.js:3277:6 - async.js:2818 [testing]/[neo-async]/async.js:2818:7 - async.js:3522 done [testing]/[neo-async]/async.js:3522:9 - Compilation.js:3240 [testing]/[webpack]/lib/Compilation.js:3240:8 - Compilation.js:3349 [testing]/[webpack]/lib/Compilation.js:3349:32 - HookWebpackError.js:68 [testing]/[webpack]/lib/HookWebpackError.js:68:3 - Conflict: Multiple assets emit different content to the same filename images/image2.jpg - Error: Conflict: Multiple assets emit different content to the same filename images/image2.jpg - Compilation.js:4243 Compilation.emitAsset [testing]/[webpack]/lib/Compilation.js:4243:6 - Compilation.js:4493 Compilation.createModuleAssets [testing]/[webpack]/lib/Compilation.js:4493:11 - Compilation.js:3052 [testing]/[webpack]/lib/Compilation.js:3052:13 - Compilation.js:3277 [testing]/[webpack]/lib/Compilation.js:3277:6 - async.js:2818 [testing]/[neo-async]/async.js:2818:7 - async.js:3522 done [testing]/[neo-async]/async.js:3522:9 - Compilation.js:3240 [testing]/[webpack]/lib/Compilation.js:3240:8 - Compilation.js:3349 [testing]/[webpack]/lib/Compilation.js:3349:32 - HookWebpackError.js:68 [testing]/[webpack]/lib/HookWebpackError.js:68:3 - child-compiler.js:169 [testing]/[html-webpack-plugin]/lib/child-compiler.js:169:18 - Compiler.js:551 finalCallback [testing]/[webpack]/lib/Compiler.js:551:5 - Compiler.js:577 [testing]/[webpack]/lib/Compiler.js:577:11 - Compiler.js:1196 [testing]/[webpack]/lib/Compiler.js:1196:17 - Hook.js:18 Hook.CALL_ASYNC_DELEGATE [as _callAsync] [testing]/[tapable]/lib/Hook.js:18:14 - Compiler.js:1192 [testing]/[webpack]/lib/Compiler.js:1192:33 - Compilation.js:2787 finalCallback [testing]/[webpack]/lib/Compilation.js:2787:11 - Compilation.js:3092 [testing]/[webpack]/lib/Compilation.js:3092:11 ERROR in Error: Child compilation failed: Conflict: Multiple assets emit different content to the same filename images/image2.jpg Error: Conflict: Multiple assets emit different content to the same filename images/image2.jpg at Compilation.emitAsset (C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\Compilation.js:4243:6) at Compilation.createModuleAssets (C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\Compilation.js:4493:11) at C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\Compilation.js:3052:13 at C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\Compilation.js:3277:6 at C:\Users\70DA\Desktop\testing\node_modules\neo-async\async.js:2818:7 at done (C:\Users\70DA\Desktop\testing\node_modules\neo-async\async.js:3522:9) at C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\Compilation.js:3240:8 at C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\Compilation.js:3349:32 at C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\HookWebpackError.js:68:3 at Hook.eval [as callAsync] (eval at create (C:\Users\70DA\Desktop\testing\node_modules\tapable\lib\HookCodeFactory.js:33:10), <anonymous>:15:1) Conflict: Multiple assets emit different content to the same filename images/image2.jpg Error: Conflict: Multiple assets emit different content to the same filename images/image2.jpg at Compilation.emitAsset (C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\Compilation.js:4243:6) at Compilation.createModuleAssets (C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\Compilation.js:4493:11) at C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\Compilation.js:3052:13 at C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\Compilation.js:3277:6 at C:\Users\70DA\Desktop\testing\node_modules\neo-async\async.js:2818:7 at done (C:\Users\70DA\Desktop\testing\node_modules\neo-async\async.js:3522:9) at C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\Compilation.js:3240:8 at C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\Compilation.js:3349:32 at C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\HookWebpackError.js:68:3 at Hook.eval [as callAsync] (eval at create (C:\Users\70DA\Desktop\testing\node_modules\tapable\lib\HookCodeFactory.js:33:10), <anonymous>:15:1) - Compilation.js:4243 Compilation.emitAsset [testing]/[webpack]/lib/Compilation.js:4243:6 - Compilation.js:4493 Compilation.createModuleAssets [testing]/[webpack]/lib/Compilation.js:4493:11 - Compilation.js:3052 [testing]/[webpack]/lib/Compilation.js:3052:13 - Compilation.js:3277 [testing]/[webpack]/lib/Compilation.js:3277:6 - async.js:2818 [testing]/[neo-async]/async.js:2818:7 - async.js:3522 done [testing]/[neo-async]/async.js:3522:9 - Compilation.js:3240 [testing]/[webpack]/lib/Compilation.js:3240:8 - Compilation.js:3349 [testing]/[webpack]/lib/Compilation.js:3349:32 - HookWebpackError.js:68 [testing]/[webpack]/lib/HookWebpackError.js:68:3 - Conflict: Multiple assets emit different content to the same filename images/image2.jpg - Error: Conflict: Multiple assets emit different content to the same filename images/image2.jpg - Compilation.js:4243 Compilation.emitAsset [testing]/[webpack]/lib/Compilation.js:4243:6 - Compilation.js:4493 Compilation.createModuleAssets [testing]/[webpack]/lib/Compilation.js:4493:11 - Compilation.js:3052 [testing]/[webpack]/lib/Compilation.js:3052:13 - Compilation.js:3277 [testing]/[webpack]/lib/Compilation.js:3277:6 - async.js:2818 [testing]/[neo-async]/async.js:2818:7 - async.js:3522 done [testing]/[neo-async]/async.js:3522:9 - Compilation.js:3240 [testing]/[webpack]/lib/Compilation.js:3240:8 - Compilation.js:3349 [testing]/[webpack]/lib/Compilation.js:3349:32 - HookWebpackError.js:68 [testing]/[webpack]/lib/HookWebpackError.js:68:3 - child-compiler.js:169 [testing]/[html-webpack-plugin]/lib/child-compiler.js:169:18 - Compiler.js:551 finalCallback [testing]/[webpack]/lib/Compiler.js:551:5 - Compiler.js:577 [testing]/[webpack]/lib/Compiler.js:577:11 - Compiler.js:1196 [testing]/[webpack]/lib/Compiler.js:1196:17 - Hook.js:18 Hook.CALL_ASYNC_DELEGATE [as _callAsync] [testing]/[tapable]/lib/Hook.js:18:14 - Compiler.js:1192 [testing]/[webpack]/lib/Compiler.js:1192:33 - Compilation.js:2787 finalCallback [testing]/[webpack]/lib/Compilation.js:2787:11 - Compilation.js:3092 [testing]/[webpack]/lib/Compilation.js:3092:11 ERROR in Error: Child compilation failed: Conflict: Multiple assets emit different content to the same filename images/image2.jpg Error: Conflict: Multiple assets emit different content to the same filename images/image2.jpg at Compilation.emitAsset (C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\Compilation.js:4243:6) at Compilation.createModuleAssets (C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\Compilation.js:4493:11) at C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\Compilation.js:3052:13 at C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\Compilation.js:3277:6 at C:\Users\70DA\Desktop\testing\node_modules\neo-async\async.js:2818:7 at done (C:\Users\70DA\Desktop\testing\node_modules\neo-async\async.js:3522:9) at C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\Compilation.js:3240:8 at C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\Compilation.js:3349:32 at C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\HookWebpackError.js:68:3 at Hook.eval [as callAsync] (eval at create (C:\Users\70DA\Desktop\testing\node_modules\tapable\lib\HookCodeFactory.js:33:10), <anonymous>:15:1) Conflict: Multiple assets emit different content to the same filename images/image2.jpg Error: Conflict: Multiple assets emit different content to the same filename images/image2.jpg at Compilation.emitAsset (C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\Compilation.js:4243:6) at Compilation.createModuleAssets (C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\Compilation.js:4493:11) at C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\Compilation.js:3052:13 at C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\Compilation.js:3277:6 at C:\Users\70DA\Desktop\testing\node_modules\neo-async\async.js:2818:7 at done (C:\Users\70DA\Desktop\testing\node_modules\neo-async\async.js:3522:9) at C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\Compilation.js:3240:8 at C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\Compilation.js:3349:32 at C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\HookWebpackError.js:68:3 at Hook.eval [as callAsync] (eval at create (C:\Users\70DA\Desktop\testing\node_modules\tapable\lib\HookCodeFactory.js:33:10), <anonymous>:15:1) - Compilation.js:4243 Compilation.emitAsset [testing]/[webpack]/lib/Compilation.js:4243:6 - Compilation.js:4493 Compilation.createModuleAssets [testing]/[webpack]/lib/Compilation.js:4493:11 - Compilation.js:3052 [testing]/[webpack]/lib/Compilation.js:3052:13 - Compilation.js:3277 [testing]/[webpack]/lib/Compilation.js:3277:6 - async.js:2818 [testing]/[neo-async]/async.js:2818:7 - async.js:3522 done [testing]/[neo-async]/async.js:3522:9 - Compilation.js:3240 [testing]/[webpack]/lib/Compilation.js:3240:8 - Compilation.js:3349 [testing]/[webpack]/lib/Compilation.js:3349:32 - HookWebpackError.js:68 [testing]/[webpack]/lib/HookWebpackError.js:68:3 - Conflict: Multiple assets emit different content to the same filename images/image2.jpg - Error: Conflict: Multiple assets emit different content to the same filename images/image2.jpg - Compilation.js:4243 Compilation.emitAsset [testing]/[webpack]/lib/Compilation.js:4243:6 - Compilation.js:4493 Compilation.createModuleAssets [testing]/[webpack]/lib/Compilation.js:4493:11 - Compilation.js:3052 [testing]/[webpack]/lib/Compilation.js:3052:13 - Compilation.js:3277 [testing]/[webpack]/lib/Compilation.js:3277:6 - async.js:2818 [testing]/[neo-async]/async.js:2818:7 - async.js:3522 done [testing]/[neo-async]/async.js:3522:9 - Compilation.js:3240 [testing]/[webpack]/lib/Compilation.js:3240:8 - Compilation.js:3349 [testing]/[webpack]/lib/Compilation.js:3349:32 - HookWebpackError.js:68 [testing]/[webpack]/lib/HookWebpackError.js:68:3 - child-compiler.js:169 [testing]/[html-webpack-plugin]/lib/child-compiler.js:169:18 - Compiler.js:551 finalCallback [testing]/[webpack]/lib/Compiler.js:551:5 - Compiler.js:577 [testing]/[webpack]/lib/Compiler.js:577:11 - Compiler.js:1196 [testing]/[webpack]/lib/Compiler.js:1196:17 - Hook.js:18 Hook.CALL_ASYNC_DELEGATE [as _callAsync] [testing]/[tapable]/lib/Hook.js:18:14 - Compiler.js:1192 [testing]/[webpack]/lib/Compiler.js:1192:33 - Compilation.js:2787 finalCallback [testing]/[webpack]/lib/Compilation.js:2787:11 - Compilation.js:3092 [testing]/[webpack]/lib/Compilation.js:3092:11 ERROR in Error: Child compilation failed: Conflict: Multiple assets emit different content to the same filename images/image2.jpg Error: Conflict: Multiple assets emit different content to the same filename images/image2.jpg at Compilation.emitAsset (C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\Compilation.js:4243:6) at Compilation.createModuleAssets (C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\Compilation.js:4493:11) at C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\Compilation.js:3052:13 at C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\Compilation.js:3277:6 at C:\Users\70DA\Desktop\testing\node_modules\neo-async\async.js:2818:7 at done (C:\Users\70DA\Desktop\testing\node_modules\neo-async\async.js:3522:9) at C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\Compilation.js:3240:8 at C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\Compilation.js:3349:32 at C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\HookWebpackError.js:68:3 at Hook.eval [as callAsync] (eval at create (C:\Users\70DA\Desktop\testing\node_modules\tapable\lib\HookCodeFactory.js:33:10), <anonymous>:15:1) Conflict: Multiple assets emit different content to the same filename images/image2.jpg Error: Conflict: Multiple assets emit different content to the same filename images/image2.jpg at Compilation.emitAsset (C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\Compilation.js:4243:6) at Compilation.createModuleAssets (C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\Compilation.js:4493:11) at C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\Compilation.js:3052:13 at C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\Compilation.js:3277:6 at C:\Users\70DA\Desktop\testing\node_modules\neo-async\async.js:2818:7 at done (C:\Users\70DA\Desktop\testing\node_modules\neo-async\async.js:3522:9) at C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\Compilation.js:3240:8 at C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\Compilation.js:3349:32 at C:\Users\70DA\Desktop\testing\node_modules\webpack\lib\HookWebpackError.js:68:3 at Hook.eval [as callAsync] (eval at create (C:\Users\70DA\Desktop\testing\node_modules\tapable\lib\HookCodeFactory.js:33:10), <anonymous>:15:1) - Compilation.js:4243 Compilation.emitAsset [testing]/[webpack]/lib/Compilation.js:4243:6 - Compilation.js:4493 Compilation.createModuleAssets [testing]/[webpack]/lib/Compilation.js:4493:11 - Compilation.js:3052 [testing]/[webpack]/lib/Compilation.js:3052:13 - Compilation.js:3277 [testing]/[webpack]/lib/Compilation.js:3277:6 - async.js:2818 [testing]/[neo-async]/async.js:2818:7 - async.js:3522 done [testing]/[neo-async]/async.js:3522:9 - Compilation.js:3240 [testing]/[webpack]/lib/Compilation.js:3240:8 - Compilation.js:3349 [testing]/[webpack]/lib/Compilation.js:3349:32 - HookWebpackError.js:68 [testing]/[webpack]/lib/HookWebpackError.js:68:3 - Conflict: Multiple assets emit different content to the same filename images/image2.jpg - Error: Conflict: Multiple assets emit different content to the same filename images/image2.jpg - Compilation.js:4243 Compilation.emitAsset [testing]/[webpack]/lib/Compilation.js:4243:6 - Compilation.js:4493 Compilation.createModuleAssets [testing]/[webpack]/lib/Compilation.js:4493:11 - Compilation.js:3052 [testing]/[webpack]/lib/Compilation.js:3052:13 - Compilation.js:3277 [testing]/[webpack]/lib/Compilation.js:3277:6 - async.js:2818 [testing]/[neo-async]/async.js:2818:7 - async.js:3522 done [testing]/[neo-async]/async.js:3522:9 - Compilation.js:3240 [testing]/[webpack]/lib/Compilation.js:3240:8 - Compilation.js:3349 [testing]/[webpack]/lib/Compilation.js:3349:32 - HookWebpackError.js:68 [testing]/[webpack]/lib/HookWebpackError.js:68:3 - child-compiler.js:169 [testing]/[html-webpack-plugin]/lib/child-compiler.js:169:18 - Compiler.js:551 finalCallback [testing]/[webpack]/lib/Compiler.js:551:5 - Compiler.js:577 [testing]/[webpack]/lib/Compiler.js:577:11 - Compiler.js:1196 [testing]/[webpack]/lib/Compiler.js:1196:17 - Hook.js:18 Hook.CALL_ASYNC_DELEGATE [as _callAsync] [testing]/[tapable]/lib/Hook.js:18:14 - Compiler.js:1192 [testing]/[webpack]/lib/Compiler.js:1192:33 - Compilation.js:2787 finalCallback [testing]/[webpack]/lib/Compilation.js:2787:11 - Compilation.js:3092 [testing]/[webpack]/lib/Compilation.js:3092:11 2 ERRORS in child compilations (Use 'stats.children: true' resp. '--stats-children' for more details) webpack 5.72.0 compiled with 20 errors in 7634 ms ما معني هذا "نزلت الحزم"
  15. ERROR in ./src/index.js 3:0-50 Module not found: Error: Can't resolve '@fortawesome/fontawesome-free/js/all.min' in 'C:\Users\70DA\Desktop\testing\src'
  16. - Module not found: Error: Can't resolve 'C:\Users\70DA\Desktop\testing\src\about.html' in 'C:\Users\70DA\Desktop\testing'
  17. كيف أجعل خدمتي في خمسات تتصدر نتائج البحث؟ لأنها في الأسفل تماما
  18. انتهيت من "دورة تطوير واجهات المستخدم" ،هل انا جاهز للعمل علي مستقل وخمسات؟ وماذا علي أن اكتب في عنوان الخدمة ووصفها؟
  19. npm ERR! code ERESOLVE npm ERR! ERESOLVE unable to resolve dependency tree npm ERR! npm ERR! While resolving: coffee-drink@1.0.0 npm ERR! Found: webpack@5.72.0 npm ERR! node_modules/webpack npm ERR! webpack@"^5.70.0" from the root project npm ERR! npm ERR! Could not resolve dependency: npm ERR! peer webpack@"^4.0.0" from optimize-css-assets-webpack-plugin@6.0.1 npm ERR! node_modules/optimize-css-assets-webpack-plugin npm ERR! dev optimize-css-assets-webpack-plugin@"^6.0.1" from the root project npm ERR! npm ERR! Fix the upstream dependency conflict, or retry npm ERR! this command with --force, or --legacy-peer-deps npm ERR! to accept an incorrect (and potentially broken) dependency resolution. npm ERR! npm ERR! See C:\Users\70DA\AppData\Local\npm-cache\eresolve-report.txt for a full report. npm ERR! A complete log of this run can be found in: npm ERR! C:\Users\70DA\AppData\Local\npm-cache\_logs\2022-04-15T15_45_35_622Z-debug-0.log PS C:\Users\70DA\Desktop\coffee_project\coffee_project> npm install --ignore-scripts --legacy-peer-deps npm WARN deprecated har-validator@5.1.5: this library is no longer supported npm WARN deprecated uuid@3.4.0: Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details. npm WARN deprecated request@2.88.2: request has been deprecated, see https://github.com/request/request/issues/3142 npm WARN deprecated popper.js@1.16.1: You can find the new Popper v2 at @popperjs/core, this package is dedicated to the legacy v1 added 621 packages, and audited 622 packages in 2m 61 packages are looking for funding run `npm fund` for details found 0 vulnerabilities
  20. npm ERR! code ERESOLVE npm ERR! ERESOLVE unable to resolve dependency tree npm ERR! npm ERR! While resolving: coffee-drink@1.0.0 npm ERR! Found: webpack@5.72.0 npm ERR! node_modules/webpack npm ERR! webpack@"^5.70.0" from the root project npm ERR! npm ERR! Could not resolve dependency: npm ERR! peer webpack@"^4.0.0" from optimize-css-assets-webpack-plugin@6.0.1 npm ERR! node_modules/optimize-css-assets-webpack-plugin npm ERR! dev optimize-css-assets-webpack-plugin@"^6.0.1" from the root project npm ERR! npm ERR! Fix the upstream dependency conflict, or retry npm ERR! this command with --force, or --legacy-peer-deps npm ERR! to accept an incorrect (and potentially broken) dependency resolution. npm ERR! npm ERR! See C:\Users\70DA\AppData\Local\npm-cache\eresolve-report.txt for a full report. npm ERR! A complete log of this run can be found in: npm ERR! C:\Users\70DA\AppData\Local\npm-cache\_logs\2022-04-15T15_45_35_622Z-debug-0.log
  21. انا عملت clone لمشروع انا كنت عامله وجيت اعمل npm install --force طلعلي الerror ده npm ERR! code 1 npm ERR! path C:\Users\70DA\Desktop\coffee_project\coffee_project\node_modules\node-sass npm ERR! command failed npm ERR! command C:\WINDOWS\system32\cmd.exe /d /s /c node scripts/build.js npm ERR! Building: C:\Program Files\nodejs\node.exe C:\Users\70DA\Desktop\coffee_project\coffee_project\node_modules\node-gyp\bin\node-gyp.js rebuild --verbose --libsass_ext= --libsass_cflags= --libsass_ldflags= --libsass_library= npm ERR! gyp info it worked if it ends with ok npm ERR! gyp verb cli [ npm ERR! gyp verb cli 'C:\\Program Files\\nodejs\\node.exe', npm ERR! gyp verb cli 'C:\\Users\\70DA\\Desktop\\coffee_project\\coffee_project\\node_modules\\node-gyp\\bin\\node-gyp.js', npm ERR! gyp verb cli 'rebuild', npm ERR! gyp verb cli '--verbose', npm ERR! gyp verb cli '--libsass_ext=', npm ERR! gyp verb cli '--libsass_cflags=', npm ERR! gyp verb cli '--libsass_ldflags=', npm ERR! gyp verb cli '--libsass_library=' npm ERR! gyp verb cli ] npm ERR! gyp info using node-gyp@8.4.1 npm ERR! gyp info using node@16.14.0 | win32 | x64 npm ERR! gyp verb command rebuild [] npm ERR! gyp verb command clean [] npm ERR! gyp verb clean removing "build" directory npm ERR! gyp verb command configure [] npm ERR! gyp verb find Python Python is not set from command line or npm configuration npm ERR! gyp verb find Python Python is not set from environment variable PYTHON npm ERR! gyp verb find Python checking if "python3" can be used npm ERR! gyp verb find Python - executing "python3" to get executable path npm ERR! gyp verb find Python - executable path is "C:\Users\70DA\AppData\Local\Microsoft\WindowsApps\PythonSoftwareFoundation.Python.3.9_qbz5n2kfra8p0\python.exe" npm ERR! gyp verb find Python - executing "C:\Users\70DA\AppData\Local\Microsoft\WindowsApps\PythonSoftwareFoundation.Python.3.9_qbz5n2kfra8p0\python.exe" to get version npm ERR! gyp verb find Python - version is "3.9.12" npm ERR! gyp info find Python using Python version 3.9.12 found at "C:\Users\70DA\AppData\Local\Microsoft\WindowsApps\PythonSoftwareFoundation.Python.3.9_qbz5n2kfra8p0\python.exe" npm ERR! gyp verb get node dir no --target version specified, falling back to host node version: 16.14.0 npm ERR! gyp verb command install [ '16.14.0' ] npm ERR! gyp verb install input version string "16.14.0" npm ERR! gyp verb install installing version: 16.14.0 npm ERR! gyp verb install --ensure was passed, so won't reinstall if already installed npm ERR! gyp verb install version is already installed, need to check "installVersion" npm ERR! gyp verb got "installVersion" 9 npm ERR! gyp verb needs "installVersion" 9 npm ERR! gyp verb install version is good npm ERR! gyp verb get node dir target node version installed: 16.14.0 npm ERR! gyp verb build dir attempting to create "build" dir: C:\Users\70DA\Desktop\coffee_project\coffee_project\node_modules\node-sass\build npm ERR! gyp verb build dir "build" dir needed to be created? Yes npm ERR! gyp verb find VS msvs_version not set from command line or npm config npm ERR! gyp verb find VS VCINSTALLDIR not set, not running in VS Command Prompt npm ERR! gyp verb find VS could not use PowerShell to find Visual Studio 2017 or newer, try re-running with '--loglevel silly' for more details npm ERR! gyp verb find VS looking for Visual Studio 2015 npm ERR! gyp verb find VS - not found npm ERR! gyp verb find VS not looking for VS2013 as it is only supported up to Node.js 8 npm ERR! gyp ERR! find VS npm ERR! gyp ERR! find VS msvs_version not set from command line or npm config npm ERR! gyp ERR! find VS VCINSTALLDIR not set, not running in VS Command Prompt npm ERR! gyp ERR! find VS could not use PowerShell to find Visual Studio 2017 or newer, try re-running with '--loglevel silly' for more details npm ERR! gyp ERR! find VS looking for Visual Studio 2015 npm ERR! gyp ERR! find VS - not found npm ERR! gyp ERR! find VS not looking for VS2013 as it is only supported up to Node.js 8 npm ERR! gyp ERR! find VS npm ERR! gyp ERR! find VS ************************************************************** npm ERR! gyp ERR! find VS You need to install the latest version of Visual Studionpm ERR! gyp ERR! find VS including the "Desktop development with C++" workload. npm ERR! gyp ERR! find VS For more information consult the documentation at: npm ERR! gyp ERR! find VS https://github.com/nodejs/node-gyp#on-windows npm ERR! gyp ERR! find VS ************************************************************** npm ERR! gyp ERR! find VS npm ERR! gyp ERR! configure error npm ERR! gyp ERR! stack Error: Could not find any Visual Studio installation to use npm ERR! gyp ERR! stack at VisualStudioFinder.fail (C:\Users\70DA\Desktop\coffee_project\coffee_project\node_modules\node-gyp\lib\find-visualstudio.js:122:47)npm ERR! gyp ERR! stack at C:\Users\70DA\Desktop\coffee_project\coffee_project\node_modules\node-gyp\lib\find-visualstudio.js:75:16 npm ERR! gyp ERR! stack at VisualStudioFinder.findVisualStudio2013 (C:\Users\70DA\Desktop\coffee_project\coffee_project\node_modules\node-gyp\lib\find-visualstudio.js:363:14) npm ERR! gyp ERR! stack at C:\Users\70DA\Desktop\coffee_project\coffee_project\node_modules\node-gyp\lib\find-visualstudio.js:71:14 npm ERR! gyp ERR! stack at C:\Users\70DA\Desktop\coffee_project\coffee_project\node_modules\node-gyp\lib\find-visualstudio.js:384:16 npm ERR! gyp ERR! stack at C:\Users\70DA\Desktop\coffee_project\coffee_project\node_modules\node-gyp\lib\util.js:54:7 npm ERR! gyp ERR! stack at C:\Users\70DA\Desktop\coffee_project\coffee_project\node_modules\node-gyp\lib\util.js:33:16 npm ERR! gyp ERR! stack at ChildProcess.exithandler (node:child_process:406:5) npm ERR! gyp ERR! stack at ChildProcess.emit (node:events:520:28) npm ERR! gyp ERR! stack at maybeClose (node:internal/child_process:1092:16) npm ERR! gyp ERR! System Windows_NT 10.0.19044 npm ERR! gyp ERR! command "C:\\Program Files\\nodejs\\node.exe" "C:\\Users\\70DA\\Desktop\\coffee_project\\coffee_project\\node_modules\\node-gyp\\bin\\node-gyp.js" "rebuild" "--verbose" "--libsass_ext=" "--libsass_cflags=" "--libsass_ldflags=" "--libsass_library=" npm ERR! gyp ERR! cwd C:\Users\70DA\Desktop\coffee_project\coffee_project\node_modules\node-sass npm ERR! gyp ERR! node -v v16.14.0 npm ERR! gyp ERR! node-gyp -v v8.4.1 npm ERR! gyp ERR! not ok npm ERR! Build failed with error code: 1 npm ERR! A complete log of this run can be found in: npm ERR! C:\Users\70DA\AppData\Local\npm-cache\_logs\2022-04-15T15_30_45_963Z-debug-0.log
  22. كل ما اعمل npm run start السرفر بيشتغل بس ما بيطلعش ال dist ليه
×
×
  • أضف...