Yama
I’ve been trying to connect React to my Phoenix project but continue to get an error. The error says
Error in ./assets/js/app.jsx
Module build failed (from ./node_modules/babel-loader/lib/index.js);
SyntaxError: path -> app.jsx
const HelloReact = () => {
return <div>Hello World</div>;
}
error points to < in
I feel like this may be a babel problem. I decided to move package.json, webpack.config.js and .babelrc to the top level due to a recommended approach on a guide I was following. Was hoping to get a second look at eyes with how I’ve configured my React. Thank you for all the help.
My .babelrc looks like
{
"presets": ["@babel/preset-env", "@babel/preset-react"],
"plugins": ["@babel/plugin-proposal-class-properties", "@babel/plugin-proposal-object-rest-spread"]
}
As for my config file
module.exports = (env, options) => ({
optimization: {
minimizer: [
new UglifyJSPlugin({ cache: true parallel: true, sourceMap: false }),
new OptimizeCSSAssetsPlugin({})
]
},
entry: {
app: "./assets/js/app.jsx"
},
output: {
filename: "app.js",
path: path.resolve(__dirname, "priv/static/js")
},
module: {
rules: [
{
test: /\.(js|jsx)$/,
exclude: /node_modules/,
use: {
loader: "babel-loader"
}
},
{
test: /\.css$/,
use: [MiniCSSExtractPlugin.loader, "css-loader"]
}
]
},
plugins: [
new MiniCssExtractPlugin({ filename: "../css/app.css"}),
new CopyWebpackPlugin([{ from: "assets/static/", to: "../" }])
],
resolve: {
extensions: ["*", ".js", ".jsx"]
}
});
Trending in Questions
Hello!
Suppose you are building workflow (order / task / payment) processing system with the following requirements:
Each workflow con...
New
I’m in search of an Elixir library that offers PDF generation capabilities similar to Ruby’s Prawn. While there have been discussions abo...
New
I’m looking to build a personal workflow to quickly deploy web applications written in elixir/phoenix, for local consumption (ie not on t...
New
Hey guys,
I’ve got a huge CSV ( around 10 GB ) that needs to be processed hourly
Do you guys have any suggestions what is the best prac...
New
Before I dive in myself, did anyone successfully sprinkle Hologram into their existing LiveView app?
Looking for hints regarding:
Addi...
New
Kia ora,
We have been using elixir-google-api to connect to Google Drive. However, with the updates to Tesla due to CVEs this is now bro...
New
I’ve followed the Phoenix LiveView file upload code here Uploads — Phoenix LiveView v1.0.0-rc.7 and so far everything works just fine wit...
New
Other Trending Topics
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Emily is an Elixir library that runs Nx computations on Apple’s MLX. Install it as the default Nx backend and Nx, defn, Axon, Nx.Serving,...
New
Latest Phoenix Threads
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #channels
- #elixirconf
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #blog-post
- #phoenix_html
- #ai
- #iex
- #graphql
- #elixirconf-us
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 10- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
lucaong
Most likely a Babel problem indeed, as it seems it’s not transpiling JSX to JS.
The Babel configuration is always giving me headaches, and right now I am not really sure, but isn’t
babel.config.jssupposed to replace.babelrc? If I am right about that, yourbabel.config.jswill take precedence, and it does not include necessary presets like@babel/preset-react. That might be what causes JSX not to be transpiled.wolfiton
If you are new to react use the creat react app it works with npx and the guide can be found here.
https://facebook.github.io/create-react-app/docs/getting-started
Also this is very important https://reactjs.org/blog/2018/10/01/create-react-app-v2.html
kokolegorille
Is that your file?
I think You miss this…
Even if it is not visible, You need to import React before using this code
because it uses
React.createElement()under the hoodwolfiton
Also can you post your package.json file to see what packages you installed?
wolfiton
Also this tutorial should offer you a complete introduction to react and babel config the right way.
https://www.valentinog.com/blog/babel/
Yama
Hm I’ve been trying to look into
babel.config.jsand it doesn’t seem to be a requirement. I may be wrong but thank you for replying. Will continue to look about both files.Yama
Thank you for replying. Actually, it isn’t my first time using React but every time I try to use it for a project, the initial setup is usually a headache when it comes to webpack. Thank you for providing those linkes. I will take a look especially the tutorial I hope will point me in the right direction. As for the packages I installed, it’s
Yama
I apologize for not copying the code exactly as what I wrote. That is my part that has mislead you. The entire file looks like this
krstfk
I may be wrong, but isn’t the return block supposed to be wrapped with parens ie :
?
kokolegorille
Ok You do import React…
This is how I did for a babel 7.4.3 and React 16.8
I use a babel.config.js with this inside
I think I got this config on the babel site.
You may adapt for your usage.
In webpack.config.js, I have
BTW, as a minor note… I put react, react-dom in dependencies, and all @babel… in devDependencies