Skip to content

Commit 0431e06

Browse files
committed
feat: migrate framework section
1 parent 76b4664 commit 0431e06

34 files changed

+2666
-3
lines changed

.DS_Store

6 KB
Binary file not shown.

README.md

-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +0,0 @@
1-
# 袋鼠云数栈 UED 团队
2-
3-
Coming soon!

next-env.d.ts

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
/// <reference types="next" />
2+
/// <reference types="next/image-types/global" />
3+
4+
// NOTE: This file should not be edited
5+
// see https://nextjs.org/docs/basic-features/typescript for more information.

next.config.js

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
const nextConfig = {
2+
distDir: 'build',
3+
}
4+
5+
module.exports = nextConfig

package.json

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
{
2+
"name": "ued-landing",
3+
"version": "1.0.0",
4+
"description": "",
5+
"main": "index.js",
6+
"scripts": {
7+
"dev": "next dev",
8+
"build": "next build",
9+
"start": "PORT=3003 next start",
10+
"lint": "next lint"
11+
},
12+
"repository": {
13+
"type": "git",
14+
"url": "ssh://[email protected]:10022/mumiao/ued-landing.git"
15+
},
16+
"keywords": [],
17+
"author": "",
18+
"license": "ISC",
19+
"dependencies": {
20+
"antd": "^4.21.7",
21+
"next": "^12.2.2",
22+
"react": "^18.2.0",
23+
"react-dom": "^18.2.0"
24+
},
25+
"devDependencies": {
26+
"commitizen": "^4.2.4",
27+
"cz-conventional-changelog": "^3.3.0",
28+
"sass": "^1.53.0"
29+
},
30+
"config": {
31+
"commitizen": {
32+
"path": "./node_modules/cz-conventional-changelog"
33+
}
34+
}
35+
}

0 commit comments

Comments
 (0)