# VuePress Server
Table of Contents
The VuePress live-reload server is best for development purposes and is the default server. It can be changed in the config.jon file if desired.
By default the VuePress server uses the following patterns
for files to watch
if patterns
is not present in config.json.
patterns: ['**/*.md', '**/*.vue'],
1
If needed files or an entire folder can be excluded as show below
'!not-this-folder/**'
using (!).
patterns: ['**/*.md', '**/*.vue', '!not-this-folder/**']
1