Giter VIP home page Giter VIP logo

Comments (6)

cocodrino avatar cocodrino commented on May 14, 2024 1

Hi @gaearon and @mewben , I've similar question, in my webpack config I did something like this

var PROD = JSON.parse(process.env.PROD_DEV || "0");
module.exports = {
    devtool: 'eval',
    entry: PROD ?
        [
        'webpack-dev-server/client?http://localhost:3000',
        'webpack/hot/only-dev-server',
        './scripts/index'
    ]
    :
     ["./scripts/index"]
    ,
    output: {
        path: path.join(__dirname, 'build'),
        filename: PROD ? "bundle.min.js" : 'bundle.js',
        publicPath: '/scripts/'
    },
    plugins: PROD ?
        [
            new webpack.HotModuleReplacementPlugin(),
            new webpack.NoErrorsPlugin(),
            (new webpack.optimize.UglifyJsPlugin({minimize: true}))
        ]
        :
        [
            new webpack.HotModuleReplacementPlugin(),
            new webpack.NoErrorsPlugin()
        ]

then I run PROD_DEV=1 webpack..this generate the minified file but I notice than this still is doing request to my dev server

GET http://localhost:3000/socket.io/?EIO=3&transport=polling&t=1441324914560-29 net::ERR_CONNECTION_REFUSED

am I missing disable the server in some place?...my config file doesnt seems have other reference to the server

from react-hot-boilerplate.

gaearon avatar gaearon commented on May 14, 2024

Normally you'll have a separate Webpack config for production. You would remove hot replacement plugin and references to dev server there, and instead add Uglify minification plugin. Then, you'd run webpack --config webpack.production.js to build.

from react-hot-boilerplate.

nimamehanian avatar nimamehanian commented on May 14, 2024

+1

from react-hot-boilerplate.

tkh44 avatar tkh44 commented on May 14, 2024

"0" would be truthy. You can just do var PROD = !!process.env.PROD_DEV

from react-hot-boilerplate.

gaearon avatar gaearon commented on May 14, 2024

Yep, that’s the problem.

from react-hot-boilerplate.

gaearon avatar gaearon commented on May 14, 2024

Let’s track in #63.

from react-hot-boilerplate.

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.