diff --git a/LICENSE b/LICENSE
index d54b831..de030e3 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,6 +1,6 @@
The MIT License (MIT)
-Copyright (c) 2021-present, cnguu, activity-page
+Copyright (c) 2021-present, cnguu, static-page-template
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
diff --git a/README.md b/README.md
index 9e50afd..cc475c3 100644
--- a/README.md
+++ b/README.md
@@ -1,8 +1,8 @@
-
-[![MIT](https://img.shields.io/github/license/spider-nest/activity-page)](https://cdn.jsdelivr.net/gh/spider-nest/activity-page@main/LICENSE)
-[![Release](https://img.shields.io/github/v/release/spider-nest/activity-page)](https://github.com/spider-nest/activity-page/releases/latest)
+[![MIT](https://img.shields.io/github/license/spider-nest/static-page-template)](https://cdn.jsdelivr.net/gh/spider-nest/static-page-template@main/LICENSE)
+[![Release](https://img.shields.io/github/v/release/spider-nest/static-page-template)](https://github.com/spider-nest/static-page-template/releases/latest)
diff --git a/globals.d.ts b/globals.d.ts
deleted file mode 100644
index 63908c6..0000000
--- a/globals.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-///
@@ -17,7 +24,7 @@
the prompts:
-
npm init svelte@next
+
yarn && yarn dev
The page you're looking at is purely static HTML, with no client-side
diff --git a/src/routes/index.svelte b/src/routes/index.svelte
index df63672..1c30e8f 100644
--- a/src/routes/index.svelte
+++ b/src/routes/index.svelte
@@ -3,17 +3,22 @@
import Counter from "$components/counter/Counter.svelte";
+ import { appName } from "$configs/app";
+
import "$styles/routes/index.less";
-
+
- Activity Page
+ {appName}
diff --git a/svelte.config.js b/svelte.config.js
index c87721e..291c3fc 100644
--- a/svelte.config.js
+++ b/svelte.config.js
@@ -6,7 +6,9 @@ import postcssPxToRem from "postcss-pxtorem";
const ifDev = process.env.NODE_ENV === "development";
+// Deploy your site under a sub path
const basePath = ifDev ? "" : "/test";
+// Deploy assets under a CDN or other
const assetsPath = ifDev ? "" : "https://res.ijunhai.com";
const appDir = ifDev ? "_app" : "wechat";