Skip to content

Commit c2dd967

Browse files
committed
feat: update to astro
1 parent 36ae9c0 commit c2dd967

36 files changed

+4281
-177
lines changed

.gitignore

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# build output
2+
dist/
3+
4+
# generated types
5+
.astro/
6+
7+
# dependencies
8+
node_modules/
9+
10+
# logs
11+
npm-debug.log*
12+
yarn-debug.log*
13+
yarn-error.log*
14+
pnpm-debug.log*
15+
16+
# environment variables
17+
.env
18+
.env.production
19+
20+
# macOS-specific files
21+
.DS_Store
22+
23+
# jetbrains setting folder
24+
.idea/

.prettierrc

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"semi": true,
3+
"singleQuote": true,
4+
"tabWidth": 2,
5+
"trailingComma": "es5"
6+
}

.vscode/extensions.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"recommendations": ["astro-build.astro-vscode"],
3+
"unwantedRecommendations": []
4+
}

.vscode/launch.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"command": "./node_modules/.bin/astro dev",
6+
"name": "Development server",
7+
"request": "launch",
8+
"type": "node-terminal"
9+
}
10+
]
11+
}

404.md

Lines changed: 0 additions & 9 deletions
This file was deleted.

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
# Homepage of MUSTLUG
2+
23
Markdown only.
34

45
Keep it Simple and Stupid.
56

67
## License
7-
[CC BY-NC 4.0](https://creativecommons.org/licenses/by-nc/4.0/ "Attribution-NonCommercial 4.0 International")
8+
9+
[CC BY-NC 4.0](https://creativecommons.org/licenses/by-nc/4.0/ 'Attribution-NonCommercial 4.0 International')

_layouts/default.html

Lines changed: 0 additions & 27 deletions
This file was deleted.

astro.config.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import { defineConfig } from 'astro/config';
2+
import UnoCSS from 'unocss/astro';
3+
4+
// https://astro.build/config
5+
export default defineConfig({
6+
integrations: [UnoCSS({ injectReset: true })],
7+
});

contact_us/index.md

Lines changed: 0 additions & 28 deletions
This file was deleted.

events/AOSC_event/index.md

Lines changed: 0 additions & 24 deletions
This file was deleted.

0 commit comments

Comments
 (0)