Some checks are pending
Module sub-split / Sub-split (push) Waiting to run
- Base: wintercms/winter branch 1.2 (full framework) - Theme vivespos: Canvas 7 + Bootstrap 5 CDN, custom CSS - Layout: deferred GTM/GA4 tracking, JSON-LD SoftwareApplication - Partials: hero (offline-first), features, modes (offline/nube toggle), screenshots, pricing (3 planes), comparison, FAQ, CTA - Plugin VivesPOS.Site with ContactForm - Dockerfile: PHP 8.2 Apache, port 80, healthcheck - Added winter/wn-pages, blog, sitemap, seo plugins - Active theme set to vivespos
59 lines
2.0 KiB
PHP
59 lines
2.0 KiB
PHP
<?php
|
|
|
|
return [
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Decompile backend assets
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Enabling this will load all individual backend asset files, instead of
|
|
| loading the compiled asset files generated by `winter:util compile
|
|
| assets`. This is useful only for development purposes, and should not be
|
|
| enabled in production. Please note that enabling this will make the
|
|
| Backend load a LOT of individual asset files.
|
|
|
|
|
| true - allow decompiled backend assets
|
|
|
|
|
| false - use compiled backend assets (default)
|
|
|
|
|
*/
|
|
|
|
'decompileBackendAssets' => false,
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Allow deep-level symlinks
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Winter CMS, by default, will allow symlinks within the first level of
|
|
| subdirectories. When this feature is enabled, the system will allow
|
|
| symlinks to be used at any directory level. This can be useful for
|
|
| symlinking individual plugins or themes.
|
|
|
|
|
| Please note that this has a negative effect on performance. This feature
|
|
| abides by "cms.restrictBaseDir" - if enabled, symlinks cannot point to
|
|
| resources outside of the root folder.
|
|
|
|
|
| true - allow symlinks at any level
|
|
|
|
|
| false - only allow symlinks at the first level of subdirectories (default)
|
|
|
|
|
*/
|
|
|
|
'allowDeepSymlinks' => false,
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Enable Snowboard debugging
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| By default, Snowboard debugging and client-side logging is disabled.
|
|
|
|
|
| If you wish to enable Snowboard debugging, set this value to `true`.
|
|
|
|
|
*/
|
|
|
|
'debugSnowboard' => env('DEBUG_SNOWBOARD', false),
|
|
];
|