UNPKG
docz-plugin-netlify
Version:
latest (1.1.4)
1.2.0
1.1.4
1.1.3
1.1.2
1.1.1
1.1.0
1.0.0
This package makes it possible to use netlify with docz
docz.site
nicholasess/docz-plugin-netlify
docz-plugin-netlify
/
index.js
12 lines
(10 loc)
•
261 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
let
fs =
require
(
"fs"
);
let
{ createPlugin } =
require
(
"docz-core"
);
module
.
exports
=
() =>
createPlugin
({
onPostBuild
:
() =>
{ fs.
writeFileSync
(
"./.docz/dist/_redirects"
,
"/* /index.html 200"
, {
encoding
:
"utf8"
}); } });