37 lines
1.1 KiB
JavaScript
37 lines
1.1 KiB
JavaScript
/** @type {import('@maizzle/framework').Config} */
|
|
|
|
/*
|
|
|-------------------------------------------------------------------------------
|
|
| Development config https://maizzle.com/docs/environments
|
|
|-------------------------------------------------------------------------------
|
|
|
|
|
| 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',
|
|
},
|
|
},
|
|
},
|
|
locals: {
|
|
cdnBaseUrl: '',
|
|
userIconUrl: "https://cdn-icons-png.flaticon.com/512/1077/1077012.png",
|
|
userName: "John Doe",
|
|
acceptUrl: "https://appflowy.io",
|
|
workspaceName: "AppFlowy",
|
|
workspaceMembersCount: "100",
|
|
workspaceIconURL: "https://cdn-icons-png.flaticon.com/512/1078/1078013.png",
|
|
},
|
|
}
|