Docs, docs, docs!
This commit is contained in:
parent
12a85ee804
commit
dcb67fba63
7 changed files with 38 additions and 2 deletions
|
|
@ -7,8 +7,13 @@ import (
|
|||
"path"
|
||||
)
|
||||
|
||||
// LocalImporter implements an Importer, where files to imports are located
|
||||
// inside a local directory from your filesystem.
|
||||
type LocalImporter struct {
|
||||
// Base is the root directory used by the LocalImporter. It should contains all themes.
|
||||
Base string
|
||||
// Symlink changes the normal file copy/concatenate behaviour to symlink/concatenate.
|
||||
// If enable, your base directory must be accessible by the frontend processus as it will follow the symlink.
|
||||
Symlink bool
|
||||
}
|
||||
|
||||
|
|
|
|||
Reference in a new issue