Cara mendeploy aplikasi React yang dibuat ke webserver
Pertama, dalam proyek reaksi Anda, buka package.json Anda dan sesuaikan baris kode ini agar sesuai dengan alamat domain + folder tujuan Anda: "homepage": "https://situswebanda.com/nama_folder_anda/", Kedua, buka terminal di proyek reaksi Anda dan ketik: npm menjalankan build Sekarang, ambil semua file dari folder build yang baru dibuat dan unggah ke your_folder_name, dengan filezilla di subfolder seperti ini: public_html/nama_folder_anda Cek di browser! Ultimately was able to figure it out , i just hope it will help someone like me. Following is how the web pack config file should look like check the dist dir and output file specified. I was missing the way to specify the path of dist directory const webpack = require ( 'webpack' ); const path = require ( 'path' ); var config = { entry : './main.js' , output : { path : path. join (__dirname, '/dist' ), filename : 'index.js' , }, devServer ...