22 lines
668 B
JavaScript
22 lines
668 B
JavaScript
/*
|
|
|-------------------------------------------------------------------------------
|
|
| Development config https://maizzle.com/docs/environments
|
|
|-------------------------------------------------------------------------------
|
|
|
|
|
| This is the base configuration that Maizzle will use when you run commands
|
|
| like `npm run build` or `npm run dev`. Additional config files will
|
|
| inherit these settings, and can override them when necessary.
|
|
|
|
|
*/
|
|
|
|
/** @type {import('@maizzle/framework').Config} */
|
|
export default {
|
|
build: {
|
|
content: ['emails/**/*.html'],
|
|
static: {
|
|
source: ['images/**/*.*'],
|
|
destination: 'images',
|
|
},
|
|
},
|
|
}
|