mirror of
https://github.com/pdemian/human2regex.git
synced 2025-05-16 04:20:35 -07:00
27 lines
430 B
TypeScript
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: {
|
|
}
|
|
}
|
|
}; |