26 lines
703 B
JavaScript
26 lines
703 B
JavaScript
/*
|
|
|-------------------------------------------------------------------------------
|
|
| Production config https://maizzle.com/docs/environments
|
|
|-------------------------------------------------------------------------------
|
|
|
|
|
| This is the production configuration that Maizzle will use when you run the
|
|
| `npm run build` command. Settings here will be merged on top of the base
|
|
| `config.js`, so you only need to add the options that are changing.
|
|
|
|
|
*/
|
|
|
|
/** @type {import('@maizzle/framework').Config} */
|
|
export default {
|
|
build: {
|
|
output: {
|
|
path: 'build_production',
|
|
},
|
|
},
|
|
css: {
|
|
inline: true,
|
|
purge: true,
|
|
shorthand: true,
|
|
},
|
|
prettify: true,
|
|
}
|