Solve the problem of webpack packaging errors

Solve the problem of webpack packaging errors

1.webpack 3.X version packaging command

webpack .\src\main.js .\dist\bundle.js

2.Webpack 4.X version packaging command

webpack .\src\main.js -o .\dist\bundle.js

Guess you like

Origin blog.csdn.net/qq_44255146/article/details/115246332