You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CodeIgniter uses SASS to generate the debug toolbar's CSS. Therefore, you
6
+
will need to install it first. You can find further instructions on the
7
+
official website: https://sass-lang.com/install
8
+
9
+
Compile SASS files
10
+
==================
11
+
12
+
Open your terminal, and navigate to CodeIgniter's root folder. To generate
13
+
the CSS file, use the following command: ``sass --no-cache --sourcemap=none admin/css/debug-toolbar/toolbar.scss system/Debug/Toolbar/Views/toolbar.css``
14
+
15
+
Details:
16
+
- ``--no-cache`` is a parameter defined to disable SASS cache, this prevents
17
+
a "cache" folder from being created
18
+
- ``--sourcemap=none`` is a parameter which prevents soucemap files from
19
+
being generated
20
+
- ``admin/css/debug-toolbar/toolbar.scss`` is the SASS source
21
+
- ``system/Debug/Toolbar/Views/toolbar.css`` is he CSS destination
0 commit comments