Skip to content

Commit

Permalink
fix: fix config reload cache busting
Browse files Browse the repository at this point in the history
  • Loading branch information
yyx990803 committed May 25, 2018
1 parent 75cdc74 commit 90f9689
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/util/loadConfig.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const path = require('path')
const yamlParser = require('js-yaml')
const tomlParser = require('toml')

module.exports = function loadConfig (vuepressDir, bustCache = false) {
module.exports = function loadConfig (vuepressDir, bustCache = true) {
const configPath = path.resolve(vuepressDir, 'config.js')
const configYmlPath = path.resolve(vuepressDir, 'config.yml')
const configTomlPath = path.resolve(vuepressDir, 'config.toml')
Expand Down

0 comments on commit 90f9689

Please sign in to comment.