gpt4 book ai didi

webpack - 需要 Webpack 包——返回空对象?

转载 作者:行者123 更新时间:2023-12-03 23:28:02 25 4
gpt4 key购买 nike

更新——相关:How to prepend module.exports = to webpack bundle?

我让 webpack 编译了一个简单的 module.exports = "asdfasdf"foo.js
在一个节点 server.js我有 var foo = require("./foo.js")
当我console.log(foo)我得到一个空对象 {}
我究竟做错了什么??

我的 webpack 配置:

module.exports = {
entry: "./test.js",
output: {
filename: "./foo.js"
},
target: "node",
module: {
loaders: [
{
exclude: /(node_modules|bower_components)/,
loader: "babel?presets[]=react,presets[]=es2015"
}
]
},
devtool: "#source-map"
};

最佳答案

我想你错过了 libraryTarget -环境。添加 libraryTarget: "commonjs2"到配置应该解决这个问题。 See the webpack-docs about it .

关于webpack - 需要 Webpack 包——返回空对象?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38289019/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com