search
HomeWeb Front-endJS TutorialHow to use publicPath path in Webpack

This time I will show you how to use the publicPath path in Webpack, and what are the precautions for using the publicPath path in Webpack. The following is a practical case, let's take a look.

output

The output option specifies the location of the webpack output. The more important and often used ones are path and publicPath

output.path

Default value: process.cwd()

output.path just indicates the output directory, corresponding to an absolute path, such as usually in a project The following configuration will be made:

output: {
 path: path.resolve(dirname, '../dist'),
}

output.publicPath

Default value: empty

String

The publicPath is specified in the official documentation The explanation is that

webpack provides a very useful configuration that can help you specify a base path for all resources in the project, which is called the public path (publicPath).

There is no clear explanation on how to apply this path...

In fact, the basic path of all resources mentioned here refers to

referencescss, js, img in the project A basic path when waiting for resources. This basic path must be used in conjunction with the path specified in the specific resource. Therefore, in fact, the access path of the packaged resource can be expressed by the following formula:

Final access path of static resources = output.publicPath Resource loader or plug-in configuration path

For example

output.publicPath = '/dist/'
// image
options: {
 name: 'img/[name].[ext]?[hash]'
}
// 最终图片的访问路径为
output.publicPath + 'img/[name].[ext]?[hash]' = '/dist/img/[name].[ext]?[hash]'
// js output.filename
output: {
 filename: '[name].js'
}
// 最终js的访问路径为
output.publicPath + '[name].js' = '/dist/[name].js'
// extract-text-webpack-plugin css
new ExtractTextPlugin({
 filename: 'style.[chunkhash].css'
})
// 最终css的访问路径为
output.publicPath + 'style.[chunkhash].css' = '/dist/style.[chunkhash].css'
This final static resource access path can be seen in the HTML obtained after packaging using html-webpack-plugin. Therefore, after publicPath is set to a relative path, the relative path is relative to index.html after build. For example, if publicPath: './dist/' is set, the reference path of packaged js is ./dist/main.js. But there is a problem here. Relative paths are OK when accessing local, but if static resources are hosted on CDN, the access path obviously cannot use relative paths. However, if publicPath is set to /, the access path after packaging is localhost:8080/ dist/main.js, cannot be accessed locally

So here you need to manually change the publicPath when going online. It feels not very convenient, but I don’t know how to solve it...

Generally, publicPath should be End with '/', and the configuration of other loaders or plug-ins should not start with '/'

publicPath in webpack-dev-server

Click to view the official documentation Introduction to devServer.publicPath

In the development stage, we use devServer to start a development server for development. A publicPath will also be configured here. The packaged files under the publicPath path here can be accessed in the browser. Static resources still use output.publicPath.

The content packaged by webpack-dev-server is placed in memory. The external root directory of these packaged resources is publicPath. In other words, here we set the location where the packaged resources are stored.

For example:

// 假设devServer的publicPath为
const publicPath = '/dist/'
// 则启动devServer后index.html的位置为
const htmlPath = `${pablicPath}index.html`
// 包的位置
cosnt mainJsPath = `${pablicPath}main.js`
The above can be accessed directly through http://lcoalhost:8080/dist/main.js.

By accessing http://localhost:8080/webpack-dev-server, you can get the resource access path after devServer is started. As shown in the figure, click on the static resource to see that the access path of the static resource is http: //localhost:8080${publicPath}index.html

##html-webpack-plugin This plug-in is used to add css and js to html templates, where template and filename will be affected by the path. From the source code, we can see the

template

effect : used to define the path of the template file

Source code:

Copy code

The code is as follows: this.options.template = this.getFullTemplatePath(this .options.template, compiler.context);

Therefore, template will only be recognized if it is defined in the context of webpack. The default value of webpack context is process.cwd(), which is the file in which the node command is run. Absolute path to the folder

filename

Function: The output HTML file name, the default is index.html, can be directly configured with subdirectories

Source code:

Copy code The code is as follows:

this.options.filename = path.relative(compiler.options.output.path, filename);

So the path of filename is relative to output.path, and in webpack-dev- In server, it is relative to the publicPath configured in webpack-dev-server.

If the publicPath of webpack-dev-server is inconsistent with output.publicPath, using html-webpack-plugin may cause failure to reference static resources, because static resources are still referenced by output.publicPath in devServer, and webpack The resource access paths provided by -dev-server are inconsistent and cannot be accessed normally.

There is one exception, that is, output.publicPath is a relative path, and local resources can be accessed at this time.

So in general, it is necessary to ensure that the publicPath in devServer is consistent with output.publicPath.

Finally

About the path in webpack, that’s all. In the process of studying the webpack path, I saw some information about the path. The fragmentary knowledge is as follows:

The meaning of slash/

/ in the configuration represents the url root path, such as http://localhost:8080/dist/js/test.js ://localhost:8080/

devServer.publicPath & devServer.contentBase

  1. ##devServer.contentBase tells the server where to serve content from. Only required if you want to serve static files.

  2. devServer.publicPath will be used to determine where the bundle should be served from, and this option takes precedence.

Path in node

  1. dirname: always returns the absolute path of the folder where the executed js is located

  2. filename: always returns the absolute path of the executed js

  3. process.cwd(): always returns the location where the node command is run Absolute path of the folder

I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to other related articles on the PHP Chinese website!

Recommended reading:

Using JS to determine the content contained in a string Summary of methods

JS HTML5 real binding mouse event Particle animation

The above is the detailed content of How to use publicPath path in Webpack. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Javascript Data Types : Is there any difference between Browser and NodeJs?Javascript Data Types : Is there any difference between Browser and NodeJs?May 14, 2025 am 12:15 AM

JavaScript core data types are consistent in browsers and Node.js, but are handled differently from the extra types. 1) The global object is window in the browser and global in Node.js. 2) Node.js' unique Buffer object, used to process binary data. 3) There are also differences in performance and time processing, and the code needs to be adjusted according to the environment.

JavaScript Comments: A Guide to Using // and /* */JavaScript Comments: A Guide to Using // and /* */May 13, 2025 pm 03:49 PM

JavaScriptusestwotypesofcomments:single-line(//)andmulti-line(//).1)Use//forquicknotesorsingle-lineexplanations.2)Use//forlongerexplanationsorcommentingoutblocksofcode.Commentsshouldexplainthe'why',notthe'what',andbeplacedabovetherelevantcodeforclari

Python vs. JavaScript: A Comparative Analysis for DevelopersPython vs. JavaScript: A Comparative Analysis for DevelopersMay 09, 2025 am 12:22 AM

The main difference between Python and JavaScript is the type system and application scenarios. 1. Python uses dynamic types, suitable for scientific computing and data analysis. 2. JavaScript adopts weak types and is widely used in front-end and full-stack development. The two have their own advantages in asynchronous programming and performance optimization, and should be decided according to project requirements when choosing.

Python vs. JavaScript: Choosing the Right Tool for the JobPython vs. JavaScript: Choosing the Right Tool for the JobMay 08, 2025 am 12:10 AM

Whether to choose Python or JavaScript depends on the project type: 1) Choose Python for data science and automation tasks; 2) Choose JavaScript for front-end and full-stack development. Python is favored for its powerful library in data processing and automation, while JavaScript is indispensable for its advantages in web interaction and full-stack development.

Python and JavaScript: Understanding the Strengths of EachPython and JavaScript: Understanding the Strengths of EachMay 06, 2025 am 12:15 AM

Python and JavaScript each have their own advantages, and the choice depends on project needs and personal preferences. 1. Python is easy to learn, with concise syntax, suitable for data science and back-end development, but has a slow execution speed. 2. JavaScript is everywhere in front-end development and has strong asynchronous programming capabilities. Node.js makes it suitable for full-stack development, but the syntax may be complex and error-prone.

JavaScript's Core: Is It Built on C or C  ?JavaScript's Core: Is It Built on C or C ?May 05, 2025 am 12:07 AM

JavaScriptisnotbuiltonCorC ;it'saninterpretedlanguagethatrunsonenginesoftenwritteninC .1)JavaScriptwasdesignedasalightweight,interpretedlanguageforwebbrowsers.2)EnginesevolvedfromsimpleinterpreterstoJITcompilers,typicallyinC ,improvingperformance.

JavaScript Applications: From Front-End to Back-EndJavaScript Applications: From Front-End to Back-EndMay 04, 2025 am 12:12 AM

JavaScript can be used for front-end and back-end development. The front-end enhances the user experience through DOM operations, and the back-end handles server tasks through Node.js. 1. Front-end example: Change the content of the web page text. 2. Backend example: Create a Node.js server.

Python vs. JavaScript: Which Language Should You Learn?Python vs. JavaScript: Which Language Should You Learn?May 03, 2025 am 12:10 AM

Choosing Python or JavaScript should be based on career development, learning curve and ecosystem: 1) Career development: Python is suitable for data science and back-end development, while JavaScript is suitable for front-end and full-stack development. 2) Learning curve: Python syntax is concise and suitable for beginners; JavaScript syntax is flexible. 3) Ecosystem: Python has rich scientific computing libraries, and JavaScript has a powerful front-end framework.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor