私は JS 開発の初心者ですが、webpack-dev-server を使用して変更をホット ロードしようとすると、上記の例外が発生します。正確なスタックは次のとおりです。
Error: `output.path` needs to be an absolute path or `/`.
at Object.Shared.share.setFs (/Users/mybox/work/day1/ex6/node_modules/webpack-dev-middleware/lib/Shared.js:88:11)
at Shared (/Users/mybox/work/day1/ex6/node_modules/webpack-dev-middleware/lib/Shared.js:214:8)
at module.exports (/Users/mybox/work/day1/ex6/node_modules/webpack-dev-middleware/middleware.js:22:15)
at new Server (/Users/mybox/work/day1/ex6/node_modules/webpack-dev-server/lib/Server.js:56:20)
at startDevServer (/Users/mybox/work/day1/ex6/node_modules/webpack-dev-server/bin/webpack-dev-server.js:379:12)
at processOptions (/Users/mybox/work/day1/ex6/node_modules/webpack-dev-server/bin/webpack-dev-server.js:317:3)
at Object.<anonymous> (/Users/mybox/work/day1/ex6/node_modules/webpack-dev-server/bin/webpack-dev-server.js:441:1)
at Module._compile (module.js:409:26)
at Object.Module._extensions..js (module.js:416:10)
at Module.load (module.js:343:32)
私がすでに試した webpack 構成ファイルは次のとおりです。
module.exports = {
entry: "./client/app.jsx",
output: {
path: "dist/js",
filename: "bundle.js",
publicPath: "http://127.0.0.1:2992/js"
},
module: {
loaders: [
{
test: /.jsx?$/,
loader: "babel-loader",
include: /client/
}
]
}
};
そして:
module.exports = {
entry: "./client/app.jsx",
output: {
path: "/Users/mybox/work/day1/ex6/dist/js",
filename: "bundle.js",
publicPath: "http://127.0.0.1:2992/js"
},
module: {
loaders: [
{
test: /.jsx?$/,
loader: "babel-loader",
include: /client/,
query: {
presets:['react']
}
}
]
}
};
以下は私のpackage.jsonファイルです
{
"name": "ex6",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"server": "node index.js",
"hot": "webpack-dev-server --inline --hot --port 2992 --progress --colors",
"dev": "webpack-dev-server --inline --dev --port 2992 --progress --colors"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"babel-preset-es2015": "^6.22.0",
"hapi": "^16.1.0",
"inert": "^4.1.0"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.22.2",
"babel-core": "^6.22.1",
"babel-loader": "^6.2.10",
"babel-preset-react": "^6.22.0",
"builder": "^3.2.1",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.3.0"
},
"description": ""
}
ベストアンサー1
エラーメッセージにあるように、絶対パスを使用する必要があります。
現在のディレクトリの絶対パスを取得するには、次のようにします。__ディレクトリ名現在のディレクトリを取得して追加しますdist/js
。つまり、次のようになります。
output: {
path: __dirname + "/dist/js", // or path: path.join(__dirname, "dist/js"),
filename: "bundle.js"
}
どちらも問題なく動作します。webpackの設定についてはこちらをご覧ください。ここ
編集: 使用するには、path: path.join(__dirname, "dist/js")
ノードの組み込みpath
モジュールが必要です。
ドキュメントから引用:
パスモジュール: ファイルおよびディレクトリ パスを操作するためのユーティリティを提供します。プレフィックス __dirname global とともに使用すると、オペレーティング システム間のファイル パスの問題が防止され、相対パスが期待どおりに機能するようになります。
webpack.config.js
それをあなたのトップで要求することができます
var path = require('path');
.....
....
..
output: {
path: path.join(__dirname, "dist/js"),
filename: "bundle.js"
}
// rest of the configuration
path.resolve
上記の2つの方法以外にも、ここ。
path: path.resolve(__dirname, "dist/js")
それが役に立てば幸い :)