Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Pôle IS
Outillage
prezbuilder
Commits
064502e8
Commit
064502e8
authored
Jun 03, 2020
by
Guillaume Perréal
Browse files
Ne déclenche pas le livereload sur les fichiers PDF.
parent
dc9d0ff2
Changes
1
Hide whitespace changes
Inline
Side-by-side
gulpfile.esm.js/dev.js
View file @
064502e8
...
...
@@ -9,7 +9,10 @@ const serve = () => {
server
({
host
:
process
.
env
.
SERVER_HOST
||
"
localhost
"
,
port
:
process
.
env
.
SERVER_PORT
||
3000
,
livereload
:
true
,
livereload
:
{
enable
:
true
,
filter
:
(
filename
,
cb
)
=>
cb
(
!
/
(
node_modules|
\.
pdf
)
$/
.
test
(
filename
))
}
})
);
};
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment