#615 - Added relative option to the public folder setting

This commit is contained in:
Elio Struyf
2023-08-06 15:00:31 -04:00
parent 5ad545ae5c
commit 598785570f
24 changed files with 213 additions and 272 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
export interface Framework {
name: string;
dist: string;
static: string;
static: string | string[];
build: string;
server?: string;
}
+4
View File
@@ -0,0 +1,4 @@
export interface StaticFolder {
path: string;
relative?: boolean;
}
+1
View File
@@ -21,6 +21,7 @@ export * from './Snippets';
export * from './SortOrder';
export * from './SortType';
export * from './SortingSetting';
export * from './StaticFolder';
export * from './TaxonomyData';
export * from './TaxonomyType';
export * from './VersionInfo';