Skip to content

Commit 90f9689

Browse files
committed
fix: fix config reload cache busting
1 parent 75cdc74 commit 90f9689

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/util/loadConfig.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ const path = require('path')
33
const yamlParser = require('js-yaml')
44
const tomlParser = require('toml')
55

6-
module.exports = function loadConfig (vuepressDir, bustCache = false) {
6+
module.exports = function loadConfig (vuepressDir, bustCache = true) {
77
const configPath = path.resolve(vuepressDir, 'config.js')
88
const configYmlPath = path.resolve(vuepressDir, 'config.yml')
99
const configTomlPath = path.resolve(vuepressDir, 'config.toml')

0 commit comments

Comments
 (0)