Mobile devtools component powered by vConsole and eruda.
Requirements
Install Component
The installation method is the same as installing a theme. There are several ways to install, choose one, for example, install through Hugo Modules:
1
2
3
4
5
6
7
| [module]
[[module.imports]]
path = "github.com/hugo-fixit/FixIt"
[[module.imports]]
path = "github.com/hugo-fixit/cmpt-mdevtools/v2"
|
Configuration
1
2
3
4
5
| # Mobile Devtools config
[params.mDevtools]
enable = false
# "eruda", "vConsole" supported
type = "eruda"
|
Inject Partial
In order to inject the partial cmpt-mdevtools.html into the custom-assets through the custom block opened by the FixIt theme, you need to fill in the following necessary configurations:
1
2
3
4
5
6
| [params]
[params.customPartials]
# ... other partials
head = [ "inject/cmpt-mdevtools.html" ]
# ... other partials
|
References