Skip to content

Latest commit

 

History

History
21 lines (17 loc) · 396 Bytes

theming.md

File metadata and controls

21 lines (17 loc) · 396 Bytes

Theming

TBD

Configuring current theme

Theme configuration is specified via view component of the application. So in order to set it up the following should be in your application config file:

'components' => [
	'view' => [
		'theme' => [
			'pathMap' => ['@app/views' => '@webroot/themes/basic'],
			'baseUrl' => '@web/themes/basic',
		],
	],
],