mirror of
https://github.com/dstotijn/hetty.git
synced 2025-07-01 18:47:29 -04:00
Scaffold admin app
This commit is contained in:
5
admin/.gitignore
vendored
Normal file
5
admin/.gitignore
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
/node_modules
|
||||
/.next
|
||||
/build
|
||||
|
||||
*.log*
|
16
admin/package.json
Normal file
16
admin/package.json
Normal file
@ -0,0 +1,16 @@
|
||||
{
|
||||
"name": "gurp-admin",
|
||||
"version": "0.1.0",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"dev": "next dev",
|
||||
"build": "next build",
|
||||
"start": "next start",
|
||||
"export": "next build && next export -o build"
|
||||
},
|
||||
"dependencies": {
|
||||
"next": "9.1.4",
|
||||
"react": "16.12.0",
|
||||
"react-dom": "16.12.0"
|
||||
}
|
||||
}
|
3
admin/pages/index.js
Normal file
3
admin/pages/index.js
Normal file
@ -0,0 +1,3 @@
|
||||
const Page = () => <div>Gurp</div>
|
||||
|
||||
export default Page
|
BIN
admin/public/favicon.ico
Normal file
BIN
admin/public/favicon.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 15 KiB |
5499
admin/yarn.lock
Normal file
5499
admin/yarn.lock
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user