Skip to content

Instantly share code, notes, and snippets.

@colorswall
Created June 4, 2018 10:05
Show Gist options
  • Save colorswall/b01dec0d4356a979698fdabd99ecf119 to your computer and use it in GitHub Desktop.
Save colorswall/b01dec0d4356a979698fdabd99ecf119 to your computer and use it in GitHub Desktop.
Force remove cache html tag meta nuxt.config.js
head: {
title: 'ColorsWall.com',
meta: [
{ hid: 'http-equiv-cache-control', 'http-equiv': 'Cache-Control', content: 'no-cache, no-store, must-revalidate' },
{ hid: 'http-equiv-pragma', 'http-equiv': 'Pragma', content: 'no-cache' },
{ hid: 'http-equiv-expires', 'http-equiv': 'Expires', content: '0' },
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment