python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
How about getting webpack to ignore some syntactic sugar
For example: optional chaining
My application is for internal use, and it's explicitly using the new Chrome browser, so a lot of syntactic sugar doesn't need to be compiled and can be used directly. C...
mqliutie
Votes: 0
Answers: 1
React not loading on html
I am trying to add react to a html page without node.
function Hello(){
return (
<div>
<p>Hello World</p>
</div>
)
}
ReactDOM.render(&l...
SomeOneOnEarthWhoLives
Votes: 0
Answers: 3
Babel Automatic runtime for react doesnt working properly . Still getting Uncaught ReferenceError: React is not defined
according to new versions of React, we shouldn't always import React from 'react'
But I still have an error Uncaught ReferenceError: React is not defined
.babelrc (Switching an order of presets doesnt...
Vasya Krenta vkrenta
Votes: 0
Answers: 1
"Cannot find module 'babel-plugin-module-resolver'" on a CI/CD pipeline
I set up a pipeline on a CI/CD (Azure Devops) to build my react native app, specifically for android.
Even though it builds correctly on my local mac (Mac OS 12.1), and assembles to a valid APK correc...
Hans Araya
Votes: 0
Answers: 0