forked from mailpace/templates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.js
26 lines (25 loc) · 757 Bytes
/
config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/*
|-------------------------------------------------------------------------------
| Development config https://maizzle.com/docs/environments/#local
|-------------------------------------------------------------------------------
|
| The exported object contains the default Maizzle settings for development.
| This is used when you run `maizzle build` or `maizzle serve` and it has
| the fastest build time, since most transformations are disabled.
|
*/
module.exports = {
build: {
templates: {
source: 'src/templates',
destination: {
path: 'build_local',
},
assets: {
source: 'src/images',
destination: 'images',
},
},
},
baseImageURL: 'https://docs.ohmysmtp.com/img/'
}