Giter VIP home page Giter VIP logo

Comments (3)

imsamdez avatar imsamdez commented on August 24, 2024

Here is an updated version of the module part of the webpack.config.js. You may need to change it according to your needs. It used Webpack 4.

    module: {
        rules: [
            {
                test: /\.js?$/,
                exclude: /(node_modules|bower_components|.vscode|.git|build)/,
                use: {
                    loader: 'babel-loader',
                    options: {
                        presets: ['react', 'es2015', 'stage-0'],
                        plugins: ['react-html-attrs', 'transform-class-properties', 'transform-decorators-legacy']
                    }
                }
            }
        ]
    },

from react-js-tutorials.

jannovergara avatar jannovergara commented on August 24, 2024

Apparently I was able to make a workaround with this:

module: {
rules: [
{
test: /.js$/,
exclude: /node_modules/,
use: {
loader: "babel-loader"
}
},
{
test: /.css$/,
use: ["style-loader", "css-loader"]
}
]
},

But thanks for the reply! Appreciate much.

from react-js-tutorials.

moonlight16 avatar moonlight16 commented on August 24, 2024

At first I was getting this error:

Cannot read property 'babel' of undefined

Then after following @sdubrez suggested changes here, now I'm getting this error:

1-basic-react $ webpack
Hash: b32ced688df0d5aea663
Version: webpack 4.21.0
Time: 106ms
Built at: 10/17/2018 6:30:26 PM
        Asset     Size  Chunks             Chunk Names
client.min.js  8.7 KiB    main  [emitted]  main
Entrypoint main = client.min.js
[./js/client.js] 217 bytes {main} [built] [failed] [1 error]

ERROR in ./js/client.js 7:16
Module parse failed: Unexpected token (7:16)
You may need an appropriate loader to handle this file type.
| 
| const app = document.getElementById('app');
> ReactDOM.render(<Layout/>, app);
| 

This is following the code in 1-basic-react tutorial

from react-js-tutorials.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.