运行应用程序webpack之后,创建一个bundle.js并将其引用添加到html中。但是该捆绑文件的物理位置在哪里?
配置
const path = require('path');
var webpack = require("webpack");
const config = {
entry: [
'./index.js',
],
module: {
rules: [
{
test: /\.css$/,
use:[ 'css-loader' ],
exclude: /node_modules/
},
{
test: /\.(js|jsx)$/,
loaders: [
'babel-loader',
],
exclude: /node_modules/
},
{
test: /[\/\\]node_modules[\/\\]some-module[\/\\]index\.js$/,
loader: "imports-loader?define=>false"
}
],
},
resolve: {
extensions: ['.css', '.js', '.jsx'],
alias: { jquery: 'jquery/src/jquery' }
},
plugins: [
new webpack.ProvidePlugin({
$: 'jquery',
jQuery: 'jquery'
})
]
};
module.exports = config;
感谢您的帮助...
答案 0 :(得分:1)
但是该捆绑文件的物理位置在哪里?
与webpack-dev-server
一起使用时,webpack将捆绑软件存储到内存文件系统中。一切都发生在内存中。