cara menambahkan url dasar sebagai src di react asli
module.exports = {
...other config
plugins: [
['module-resolver', {
root: [
'./src',
],
"alias": {
"~": "./src",
}
}],
],
};
ashirbad-panigrahi