Example of disabling browser cache configuration in Vue project

Example of disabling browser cache configuration in Vue project

When releasing a project, you will often encounter the problem of needing to clean up the cache. Here is the actual method to disable the cache for the project.

1. Modify the meta configuration of the index.html file in the public folder

image.png

    <meta http-equiv="pragram" content="no-cache" />
    <meta http-equiv="cache-control" content="no-cache, no-store, must-revalidate" />
    <meta http-equiv="expires" content="0" />

2.vue cli build configuration (for versions below vue3)

Add configuration in vue.config.js

const Timestamp = new Date().getTime()
module.exports = {
  configureWebpack: {
    output: { // Output the name of the file after reconstruction, packaging and compilation [module name. version number (optional). timestamp]
      filename: `[name].${Timestamp}.js`,
      chunkFilename: `[name].${Timestamp}.js`
    },
  },
  css: {
    extract: { // Add timestamp to the name of the CSS file after packaging filename: `css/[name].${Timestamp}.css`,
      chunkFilename: `css/[name].${Timestamp}.css`
    }
  },
}

3. Nginx configuration

Disable nginx cache and let the browser request files from the server each time instead of reading cached files in the browser.

After the program is debugged and launched, you can enable nginx cache to save server bandwidth, reduce some requests, and reduce server pressure.

image.png

Configure the HTML file in the nginx.conf file to add a header by default and not cache the configuration

The following actual project nginx cache configuration

  location ~ .*\.(?:htm|html)$ {
    add_header Cache-Control "private, no-store, no-cache, must-revalidate, proxy-revalidate";
  }

Nginx static resource cache settings https://www.jb51.net/article/222620.htm

This is the end of this article about the case of disabling browser cache configuration in vue project. For more relevant content about disabling browser cache configuration in vue project, 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:
  • Vue encapsulates a TodoList example and implements the application of browser local cache
  • Solve the problem of WeChat browser caching site entry files (IIS deploys Vue project)
  • Detailed explanation of Vue server-side rendering browser cache (keep-alive)

<<:  Tutorial on installing Nvidia graphics card driver in Ubuntu 18.04 (with pictures and text)

>>:  Ubuntu 20.04 CUDA & cuDNN Installation Method (Graphical Tutorial)

Recommend

HTML basic summary recommendation (text format)

HTML text formatting tags 標簽 描述 <b> 定義粗體文本 ...

Tutorial on downloading, installing, configuring and using MySQL under Windows

Overview of MySQL MySQL is a relational database ...

Vue implements an Input component that gets the key display shortcut key effect

I encountered a requirement to customize shortcut...

Docker /var/lib/docker/aufs/mnt directory cleaning method

The company's service uses docker, and the di...

An article to deal with Mysql date and time functions

Table of contents Preface 1. Get the current time...

Web design experience: Make the navigation system thin

<br />When discussing with my friends, I men...

mysql 5.7.18 winx64 free installation configuration method

1. Download 2. Decompression 3. Add the path envi...

Vue uses openlayers to load Tiandi Map and Amap

Table of contents 1. World Map 1. Install openlay...

CSS to achieve compatible text alignment in different browsers

In the front-end layout of the form, we often nee...

How to solve the 2002 error when installing MySQL database on Alibaba Cloud

The following error occurred while installing the...

Detailed installation tutorial of Mysql5.7.19 under Centos7

1. Download Download mysql-5.7.19-linux-glibc2.12...

MySQL 5.7.20 Green Edition Installation Detailed Graphic Tutorial

First, let’s understand what MySQL is? MySQL is a...

VUE+Express+MongoDB front-end and back-end separation to realize a note wall

I plan to realize a series of sticky note walls. ...

Vue implements simple notepad function

This article example shares the specific code of ...