1
0
mirror of https://github.com/pdemian/human2regex.git synced 2025-05-16 04:20:35 -07:00
human2regex/config.ts
2020-10-04 06:14:46 -04:00

27 lines
430 B
TypeScript

/*! Copyright (c) 2020 Patrick Demian; Licensed under MIT */
export const config = {
prod: true,
deploy: false,
dst: "./docs/",
src: "./src/",
compression_config: {
html: {
collapseWhitespace: true,
minifyCSS: true,
minifyJS: true,
removeComments: true,
removeEmptyAttributes: true,
removeRedundantAttributes: true
},
js: {
output: {
comments: /^!/
}
},
css: {
}
}
};