From 9cc9968bcf4345a0f408259806326a15c9c816a7 Mon Sep 17 00:00:00 2001 From: w2xi <43wangxi@gmail.com> Date: Tue, 30 Jan 2024 18:58:27 +0800 Subject: [PATCH] chore: remove useless file --- components/Counter.vue | 37 ------------------------------------- netlify.toml | 16 ---------------- pages/multiple-entries.md | 27 --------------------------- vercel.json | 7 ------- 4 files changed, 87 deletions(-) delete mode 100644 components/Counter.vue delete mode 100644 netlify.toml delete mode 100644 pages/multiple-entries.md delete mode 100644 vercel.json diff --git a/components/Counter.vue b/components/Counter.vue deleted file mode 100644 index eaa6a79..0000000 --- a/components/Counter.vue +++ /dev/null @@ -1,37 +0,0 @@ - - - diff --git a/netlify.toml b/netlify.toml deleted file mode 100644 index 18dde11..0000000 --- a/netlify.toml +++ /dev/null @@ -1,16 +0,0 @@ -[build.environment] - NODE_VERSION = "18" - -[build] - publish = "dist" - command = "npm run build" - -[[redirects]] - from = "/.well-known/*" - to = "/.well-known/:splat" - status = 200 - -[[redirects]] - from = "/*" - to = "/index.html" - status = 200 diff --git a/pages/multiple-entries.md b/pages/multiple-entries.md deleted file mode 100644 index 5b17510..0000000 --- a/pages/multiple-entries.md +++ /dev/null @@ -1,27 +0,0 @@ -# Multiple Entries - -You can split your slides.md into multiple files and organize them as you want using the `src` attribute. - -#### `slides.md` - -```markdown -# Page 1 - -Page 2 from main entry. - ---- -src: ./subpage.md ---- -``` - -
- -#### `subpage.md` - -```markdown -# Page 2 - -Page 2 from another file. -``` - -[Learn more](https://sli.dev/guide/syntax.html#multiple-entries) diff --git a/vercel.json b/vercel.json deleted file mode 100644 index 9276941..0000000 --- a/vercel.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "rewrites": [ - { "source": "/(.*)", "destination": "/index.html" } - ], - "buildCommand": "npm run build", - "outputDirectory": "dist" -}