💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
#### 快速构建package.json文件 `npm init -y` #### 安装webpack4及其命令行接口 `npm i webpack webpack-cli --save-dev` ``` //package.json文件增加build参数 "scripts": { "build": "webpack" } //webpack.config.js 增加内容 //基于commonjs规范 let path = require('path'); module.exports = { entry:'./src/index.js', output:{ filename:'index.html', path:path.resolve('./dist'), }, module:{}, plugins:[], mode:'development', resolve:{}, } ``` #### webpack 服务器 webpack-dev-server ``` //webpack.config.js 添加内容 devServer:{ contentBase:'./dist', }, ``` #### html-webpack-plugin html打包工具 ``` //https://segmentfault.com/a/1190000013883242 var htmlWebpackPlugin = require('html-webpack-plugin') const path = require('path') module.exports = { entry: './src/script/main.js', output: { filename: 'js/bundle.js', path: path.resolve(__dirname, 'dist') }, plugins: [ new htmlWebpackPlugin({ filename: 'index.html', template: 'index.html', inject: 'head' }) ] } ```