diff --git a/src/main.js b/app/boot.js
similarity index 87%
rename from src/main.js
rename to app/boot.js
index 6afa143..1134efb 100644
--- a/src/main.js
+++ b/app/boot.js
@@ -2,9 +2,9 @@ import * as riot from "riot";
import {Route, Router} from "@riotjs/route";
import app from "./components/app.riot";
-const main = {
+const boot = {
// start-up actions here
- init() {
+ start() {
// install plugins
this.plugins();
@@ -18,8 +18,8 @@ const main = {
// add your own features here
component.version = {
riot: "9.x.x",
- vite: "5.x.x",
- app: "3.1.0"
+ vite: "6.x.x",
+ app: "4.0.0"
};
});
},
@@ -35,4 +35,4 @@ const main = {
}
}
-main.init();
+boot.start();
diff --git a/src/components/app.riot b/app/components/app.riot
similarity index 84%
rename from src/components/app.riot
rename to app/components/app.riot
index eb5ce1b..c689cf0 100644
--- a/src/components/app.riot
+++ b/app/components/app.riot
@@ -13,8 +13,8 @@
+