Webpack file packaging error exception

Webpack file packaging error exception

Before webpack packaging, we must ensure that the following work has been completed:

1) Install webpack: Recommended global command npm install -g webpack View webpack version webpack -v

2) Errors may occur when packaging the files at this time, prompting scaffolding file errors, because in the webpack4 version, CLI has been separated out, so we need to install it separately and execute the global command npm install -g webpack-cli. After installing the scaffolding, it stands to reason that the webpack command can be used for normal packaging.

The general syntax for using webpack to package files is: ( This is what the webpack introductory tutorial on Jianshu says )

# {extry file} fills in the path of the entry file. In this article, it is the path of the main.js mentioned above.
# Fill in the storage path of the packaged file in {destination for bundled file}# No need to add {} when filling in the path
webpack {entry file} {destination for bundled file}

# Webpack is not installed globally node_modules/.bin/webpack app/main.js public/bundle.js

So I executed the packaging command webpack a.js bundle.js, but the error WARNING in configuration The 'mode' option has…..

The screenshots are as follows:

這里寫圖片描述

This error message is not because our environment is installed incorrectly, but because webpack 4 has stricter requirements on webpack syntax after the update.

The previous command was revised to webpack a.js –output-filename bundle.js. When this command was executed, the packaging was successful. The screenshots are as follows:

這里寫圖片描述

This is the end of this article about webpack file packaging errors and exceptions. For more related webpack packaging errors, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Teach you how to use webpack to package and compile TypeScript code
  • How to use webpack and rollup to package component libraries
  • Vue packaging uses the image-webpack-loader plug-in to compress and optimize images
  • After the vue-cli+webpack project is packaged to the server, the solution to the problem that the ttf font cannot be found
  • vue solves the problem of uglifyjs-webpack-plugin packaging error
  • Detailed explanation of Webpack4 multi-page application packaging solution
  • In-depth understanding of webpack packaging principles and the implementation of loader and plugin
  • Detailed explanation of the general process of using mocha to perform "smoke testing" on webpack packaged projects

<<:  Database query which object contains which field method statement

>>:  Detailed explanation of the difference between docker-compose ports and expose

Recommend

jQuery implements navigation bar effect with expansion animation

I designed and customized a navigation bar with a...

Win7 installation MySQL 5.6 tutorial diagram

Table of contents 1. Download 2. Installation 3. ...

Collection of 12 practical web online tools

1. Favicon.cc To create ico icon websites online,...

Detailed explanation of the usage and difference between nohup and & in Linux

Example: We use the Python code loop_hello.py as ...

Vite+Electron to quickly build VUE3 desktop applications

Table of contents 1. Introduction 2. Create a Vit...

Vue-cli creates a project and analyzes the project structure

Table of contents 1. Enter a directory and create...

Solve the problem of yum installation error Protected multilib versions

Today, when installing nginx on the cloud server,...

In-depth understanding of CSS @font-face performance optimization

This article mainly introduces common strategies ...

Why is it slow when using limit and offset paging scenarios?

Let’s start with a question Five years ago when I...

MySQL series of experience summary and analysis tutorials on NUll values

Table of contents 1. Test Data 2. The inconvenien...

How to reset the root password in Linux mysql-5.6

1. Check whether the MySQL service is started. If...

How to Enable or Disable Linux Services Using chkconfig and systemctl Commands

This is an important (and wonderful) topic for Li...

Tutorial on installing MySQL 5.7.18 decompressed version on Windows

1. Installation process MySQL version: 5.7.18 1. ...

A thorough analysis of HTML special characters

A Thorough Analysis of HTML (14) Special Characte...