20 lines
363 B
JavaScript
20 lines
363 B
JavaScript
|
|
module.exports = {
|
||
|
|
routes: [
|
||
|
|
"/home/",
|
||
|
|
"/home/signin",
|
||
|
|
"/home/signup",
|
||
|
|
"/home/dashboard",
|
||
|
|
"/home/features",
|
||
|
|
"/home/pricing",
|
||
|
|
"/home/contact-us",
|
||
|
|
"/home/blog"
|
||
|
|
],
|
||
|
|
inlineCss: true,
|
||
|
|
puppeteerArgs: ["--no-sandbox"],
|
||
|
|
skipThirdPartyRequests: true,
|
||
|
|
minifyHtml: {
|
||
|
|
collapseWhitespace: true,
|
||
|
|
removeComments: true,
|
||
|
|
},
|
||
|
|
};
|