簡體   English   中英

React,Webpack:未生成bundle.js

[英]React, Webpack: bundle.js is not generated

編輯:原因是我正在運行webpack-dev-server ,而僅運行webpack才起作用。

我正在使用React和Webpack。 沒有生成bundle.js 在SO上發現了這個問題 ,但提出了同樣的問題,但是我似乎已經安裝了必需的依賴項。 這是我的webpack.config.js:

var webpack = require('webpack');    
module.exports = {
    entry: [
        'webpack-dev-server/client?http://localhost:8080',
        'webpack/hot/only-dev-server',
        './src/index.js'
    ],
    module: {
        loaders: [{
            test: /\.js?$/,
            exclude: /node_modules/,
            loader: 'react-hot!babel'
        }]
    },
    resolve: {
        extensions: ['', '.js']
    },
    output: {
        path: 'dist',
        publicPath: '/',
        filename: 'bundle.js'
    },
    devServer: {
        contentBase: './dist',
        hot: true
    },
    plugins: [
        new webpack.HotModuleReplacementPlugin()
    ]
};

這是我的package.json:

{
  "name": "plump",
  "version": "1.0.0",
  "description": "",
  "main": "index.js",
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/fiskpatte/plump.git"
  },
  "keywords": [],
  "author": "",
  "license": "ISC",
  "babel": {
    "presets": [
      "es2015",
      "react"
    ]
  },
  "bugs": {
    "url": "https://github.com/fiskpatte/plump/issues"
  },
  "homepage": "https://github.com/fiskpatte/plump#readme",
  "devDependencies": {
    "babel-core": "^6.8.0",
    "babel-loader": "^6.2.4",
    "babel-preset-es2015": "^6.6.0",
    "babel-preset-react": "^6.5.0",
    "react-hot-loader": "^1.3.0",
    "webpack": "^1.13.0",
    "webpack-dev-server": "^1.14.1"
  },
  "dependencies": {
    "history": "^2.1.1",
    "react": "^15.0.1",
    "react-dom": "^15.0.1",
    "react-router": "^2.4.0"
  }
}

任何想法?

編輯。 運行webpack時的輸出:

                               Asset      Size  Chunks             Chunk Names
                           bundle.js   1.19 MB       0  [emitted]  main
0.63b359d04fe48d6168fa.hot-update.js   27.9 kB       0  [emitted]  main
63b359d04fe48d6168fa.hot-update.json  36 bytes          [emitted]
chunk    {0} bundle.js, 0.63b359d04fe48d6168fa.hot-update.js (main) 1.11 MB [rendered]
  [318] ./src/components/LoginPage.js 8.93 kB {0} [built]
  [322] ./src/components/Lobby.js 12.2 kB {0} [built]
  [323] ./src/components/SignUp.js 5.6 kB {0} [built]
  [324] ./src/pages/Game.js 27.3 kB {0} [built]
     + 321 hidden modules
webpack: bundle is now VALID.

輸出路徑可能有問題..您可以嘗試將輸出路徑替換為./dist

這是由於package.json腳本中缺少一些鍵-值對。 將腳本對象替換為以下內容:

"scripts": {
    "start": "npm run build",
    "build": "webpack -p && webpack-dev-server"
  },

“ -p”表示專門用於webpack.config.js的生產環境。 然后運行以下命令: $ npm start

$ npm start將調用npm run build cmd,后者將依次調用“ webpack -p && webpack-dev-server”

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM