webpack 使用
2021-03-18 19:27
标签:out try const 步骤 build lis jpg path mamicode 运行命令: webpack配置 :新建webpack.config.js文件 之后运行 npm init 在package.json中 此时可以不需要最开始麻烦的运行步骤 可以使用npm run build (实际中开发中会进行局部安装,这个build 会先在本地进行寻找webpack) webpack 使用 标签:out try const 步骤 build lis jpg path mamicode 原文地址:https://www.cnblogs.com/doumian/p/12764778.html
webpack ./src/main.js dist/bundle.js
const path = require(‘path‘)
module.exports = {
entry: ‘./src/main.js‘,
output: {
path: path.resolve(__dirname, ‘dist‘),
filename: ‘bundle.js‘
}