👽️ Incorpora nueva creación de recursos estáticos
This commit is contained in:
parent
f7faf4d345
commit
32d068065e
8 changed files with 40 additions and 8 deletions
|
|
@ -1,3 +1,7 @@
|
|||
use pagetop_build::StaticFilesBundle;
|
||||
|
||||
fn main() -> std::io::Result<()> {
|
||||
pagetop_build::bundle_resources("./static", "aliner", None)
|
||||
StaticFilesBundle::from_dir("./static")
|
||||
.with_name("aliner")
|
||||
.build()
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,3 +1,7 @@
|
|||
use pagetop_build::StaticFilesBundle;
|
||||
|
||||
fn main() -> std::io::Result<()> {
|
||||
pagetop_build::bundle_resources("./static", "bootsier", None)
|
||||
StaticFilesBundle::from_dir("./static")
|
||||
.with_name("bootsier")
|
||||
.build()
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,3 +1,7 @@
|
|||
use pagetop_build::StaticFilesBundle;
|
||||
|
||||
fn main() -> std::io::Result<()> {
|
||||
pagetop_build::bundle_resources("./static", "bulmix", None)
|
||||
StaticFilesBundle::from_dir("./static")
|
||||
.with_name("bulmix")
|
||||
.build()
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,3 +1,7 @@
|
|||
use pagetop_build::StaticFilesBundle;
|
||||
|
||||
fn main() -> std::io::Result<()> {
|
||||
pagetop_build::bundle_resources("./static", "homedemo", None)
|
||||
StaticFilesBundle::from_dir("./static")
|
||||
.with_name("homedemo")
|
||||
.build()
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,3 +1,7 @@
|
|||
use pagetop_build::StaticFilesBundle;
|
||||
|
||||
fn main() -> std::io::Result<()> {
|
||||
pagetop_build::bundle_resources("./static", "jquery", None)
|
||||
StaticFilesBundle::from_dir("./static")
|
||||
.with_name("jquery")
|
||||
.build()
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,3 +1,7 @@
|
|||
use pagetop_build::StaticFilesBundle;
|
||||
|
||||
fn main() -> std::io::Result<()> {
|
||||
pagetop_build::bundle_resources("./static", "megamenu", None)
|
||||
StaticFilesBundle::from_dir("./static")
|
||||
.with_name("megamenu")
|
||||
.build()
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,3 +1,7 @@
|
|||
use pagetop_build::StaticFilesBundle;
|
||||
|
||||
fn main() -> std::io::Result<()> {
|
||||
pagetop_build::bundle_resources("./static", "minimal", None)
|
||||
StaticFilesBundle::from_dir("./static")
|
||||
.with_name("minimal")
|
||||
.build()
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,3 +1,7 @@
|
|||
use pagetop_build::StaticFilesBundle;
|
||||
|
||||
fn main() -> std::io::Result<()> {
|
||||
pagetop_build::bundle_resources("./static/theme", "theme", None)
|
||||
StaticFilesBundle::from_dir("./static/theme")
|
||||
.with_name("theme")
|
||||
.build()
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue