入口起点指示webpack应该使用那个模块,来作为构建其内部依赖图的开始。进入入口起点后,webpack会找到哪些模块和库是入口起点(直接和间接)依赖的。
语法:
entry: string|Array
或:
entry: {
[entryChunkName: string]: string| Array
}
例如:
1、entry: "./src/entry.js"
2、entry: ['./src/entry.js', './src/entry2.js']
3、entry: {
entry: './src/entry.js'
}
4、entry: {
entry: './src/entry.js', // 对象属性名随意命名
entry2: './src/entry2.js'
}
上述代码中,1、3为单入口写法,2、4为多入口写法。
出口属性告诉webpack在哪里输出它所创建的文件,以及如何命名这些文件。
语法:
output:{
filename:string,
path: string
}
在webpack中配置output属性是一个对象,其必须包含 filename、path两个属性。
例如:
output: {
filename: 'bundle.js',
path: "/home/webpacktest/dist"
}
path也可以使用node的path对象来处理路径,在webpack.config.js的头部引入path,代码如下:
const path = require('path');
output: {
filename: 'bundle.js',
path: path.resolve(__dirname, 'dist')
}
path.resolve(__dirname, 'dist')
会获取到项目的绝对路径。
多入口、多出口:
entry: {
entry: './src/entry.js',
entry2: './src/entry2.js'
},
output: {
path: path.resolve(__dirname, 'dist'),
filename: '[name].js'
}
[name]
的意思是根据入口文件的名称,打包成相同的名称,有几个入口文件,就可以打包出几个文件。
webpack-dev-server是webpack官方提供的一个小型的express服务器。使用它可以为webpack打包生成的资源文件提供web服务,以及自动刷新和热替换。
要执行webpack-dev-server需要先安装,使用 npm install webpack-dev-server --save-dev
安装webpack-dev-server。安装完进行配置,最简单的devServer只需要四项:
devServer: {
contentBase: path.resolve(__dirname, 'dist'),
host: 'localhost,
compress: true,
port: 3000
}
0.0.0.0
。具体devServer配置参见:https://doc.webpack-china.org/configuration/dev-server/#devserver-publicpath-