24 lines
648 B
JavaScript
24 lines
648 B
JavaScript
/*
|
|
|-------------------------------------------------------------------------------
|
|
| Production config https://maizzle.com/docs/environments/#production
|
|
|-------------------------------------------------------------------------------
|
|
|
|
|
| This is where you define settings that optimize your emails for production.
|
|
| These will be merged on top of the base config.js, so you only need to
|
|
| specify the options that are changing.
|
|
|
|
|
*/
|
|
|
|
module.exports = {
|
|
build: {
|
|
templates: {
|
|
destination: {
|
|
path: 'dist',
|
|
},
|
|
},
|
|
},
|
|
prettify: true,
|
|
inlineCSS: true,
|
|
removeUnusedCSS: true,
|
|
shorthandInlineCSS: true,
|
|
}
|