...
Code Block |
---|
define('GRAPHQL_DEVELOPMENT_MODE', true); $CFG->cache_graphql_schema = false; |
Tui assets
Tui requires a build process to bundle src files into build files. The following command will build both production and development builds.
Code Block |
---|
npm installci npm run tui-build |
For more information and tips for developing Vue and Tui, see Setting up your development environment in the Tui documentation.
Legacy assets
Legacy CSS requires a build process as well, as do any changes to legacy JavaScript modules.
Code Block |
---|
cd server/
npm ci
npx grunt
cd ../ |