webpack教程之webpack.config.js配置文件
程序员文章站
2023-02-25 13:29:41
首先我们需要安装一个webpack插件html-webpack-plugin,该插件的作用是帮助我们生成创建html入口文件。执行如下命令
npm install...
首先我们需要安装一个webpack插件html-webpack-plugin,该插件的作用是帮助我们生成创建html入口文件。执行如下命令
npm install html-webpack-plugin --save-dev
在项目app目录下建立component.js文件,写入如下代码
export default (text='hello world')=>{ const element=document.createelement('div'); element.innerhtml=text; return element; }
在根目录下创建webpack.config.js文件
const path=require('path'); const htmlwebpackplugin=require('html-webpack-plugin'); const paths={ app:path.join(__dirname,'app'), build:path.join(__dirname,'build'), }; module.exports = { entry: { app:paths.app, }, output: { path:paths.build, filename: "[name].js" }, plugins: [ new htmlwebpackplugin({ title: 'webpack demo', }) ] };
打开命令行,切换到项目目录下,执行webpack命令。
这就代表着打包成功,看下我们多出的index.html文件。
首先我们需要安装一个webpack插件html-webpack-plugin,该插件的作用是帮助我们生成创建html入口文件。执行如下命令
npm install html-webpack-plugin --save-dev
在项目app目录下建立component.js文件,写入如下代码
export default (text='hello world')=>{ const element=document.createelement('div'); element.innerhtml=text; return element; }
在根目录下创建webpack.config.js文件
const path=require('path'); const htmlwebpackplugin=require('html-webpack-plugin'); const paths={ app:path.join(__dirname,'app'), build:path.join(__dirname,'build'), }; module.exports = { entry: { app:paths.app, }, output: { path:paths.build, filename: "[name].js" }, plugins: [ new htmlwebpackplugin({ title: 'webpack demo', }) ] };
打开命令行,切换到项目目录下,执行webpack命令。
这就代表着打包成功,看下我们多出的index.html文件。
看下我们的build/app.js
可以看到我们的index.js代码和component.js经过了webpack特殊的处理。
用浏览器打开index.html可以看到如下效果
即为成功。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。