first
31
.github/workflows/gh-pages.yml
vendored
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
name: github pages
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build-deploy:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v1
|
||||||
|
- uses: actions/setup-node@v1
|
||||||
|
with:
|
||||||
|
node-version: 14
|
||||||
|
ref: main
|
||||||
|
submodules: true
|
||||||
|
fetch-depth: 0
|
||||||
|
- run: yarn install
|
||||||
|
|
||||||
|
- name: Build
|
||||||
|
env:
|
||||||
|
TZ: "Asia/Tokyo"
|
||||||
|
run: |
|
||||||
|
yarn build
|
||||||
|
|
||||||
|
- name: Deploy
|
||||||
|
uses: peaceiris/actions-gh-pages@v3
|
||||||
|
with:
|
||||||
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
publish_dir: ./dist
|
30
.gitignore
vendored
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
.DS_Store
|
||||||
|
node_modules
|
||||||
|
/dist
|
||||||
|
|
||||||
|
# local env files
|
||||||
|
.env.local
|
||||||
|
.env.*.local
|
||||||
|
|
||||||
|
# Log files
|
||||||
|
npm-debug.log*
|
||||||
|
yarn-debug.log*
|
||||||
|
yarn-error.log*
|
||||||
|
|
||||||
|
# Editor directories and files
|
||||||
|
.idea
|
||||||
|
.vscode
|
||||||
|
*.suo
|
||||||
|
*.ntvs*
|
||||||
|
*.njsproj
|
||||||
|
*.sln
|
||||||
|
*.sw?
|
||||||
|
.DS_Store
|
||||||
|
*/.DS_Store
|
||||||
|
*/*/.DS_Store
|
||||||
|
*/*/*/.DS_Store
|
||||||
|
*/*/*/*/.DS_Store
|
||||||
|
*/*/*/*/*/.DS_Store
|
||||||
|
*/*/*/*/*/*/.DS_Store
|
||||||
|
*/*/*/*/*/*/*/.DS_Store
|
||||||
|
*/*/*/*/*/*/*/*/.DS_Store
|
5
babel.config.js
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
module.exports = {
|
||||||
|
presets: [
|
||||||
|
'@vue/cli-plugin-babel/preset'
|
||||||
|
]
|
||||||
|
}
|
43
package.json
Normal file
@ -0,0 +1,43 @@
|
|||||||
|
{
|
||||||
|
"name": "manga.syui.ai",
|
||||||
|
"version": "0.1.0",
|
||||||
|
"private": true,
|
||||||
|
"scripts": {
|
||||||
|
"serve": "vue-cli-service serve",
|
||||||
|
"build": "vue-cli-service build",
|
||||||
|
"lint": "vue-cli-service lint"
|
||||||
|
},
|
||||||
|
"dependencies": {
|
||||||
|
"core-js": "^3.6.4",
|
||||||
|
"hooper": "^0.3.4",
|
||||||
|
"vue": "^2.6.11"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"@vue/cli-plugin-babel": "~4.3.0",
|
||||||
|
"@vue/cli-plugin-eslint": "~4.3.0",
|
||||||
|
"@vue/cli-service": "~4.3.0",
|
||||||
|
"babel-eslint": "^10.1.0",
|
||||||
|
"eslint": "^6.7.2",
|
||||||
|
"eslint-plugin-vue": "^6.2.2",
|
||||||
|
"vue-template-compiler": "^2.6.11"
|
||||||
|
},
|
||||||
|
"eslintConfig": {
|
||||||
|
"root": true,
|
||||||
|
"env": {
|
||||||
|
"node": true
|
||||||
|
},
|
||||||
|
"extends": [
|
||||||
|
"plugin:vue/essential",
|
||||||
|
"eslint:recommended"
|
||||||
|
],
|
||||||
|
"parserOptions": {
|
||||||
|
"parser": "babel-eslint"
|
||||||
|
},
|
||||||
|
"rules": {}
|
||||||
|
},
|
||||||
|
"browserslist": [
|
||||||
|
"> 1%",
|
||||||
|
"last 2 versions",
|
||||||
|
"not dead"
|
||||||
|
]
|
||||||
|
}
|
12
public/404.html
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="">
|
||||||
|
<head>
|
||||||
|
<title>card.syui.ai</title><meta charset="utf-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="width=device-width,initial-scale=1"><title>card.syui.ai</title><link href="app.css" rel="preload" as="style"><link href="app.js" rel="preload" as="script"><link href="chunk-vendors.js" rel="preload" as="script"><link href="app.css" rel="stylesheet">
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta property="og:url" content="https://manga.syui.ai">
|
||||||
|
<meta property="og:title" content="yui">
|
||||||
|
<meta property="og:description" content="©syui.ai">
|
||||||
|
<meta property="og:image" content="https://manga.syui.ai/manga/og.png">
|
||||||
|
</head>
|
||||||
|
<body><div id="app"></div><script src="chunk-vendors.js"></script><script src="app.js"></script></body>
|
||||||
|
</html>
|
BIN
public/favicon.ico
Normal file
After Width: | Height: | Size: 15 KiB |
12
public/index.html
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<title>card.syui.ai</title><meta charset="utf-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="width=device-width,initial-scale=1"><title>card.syui.ai</title><link href="app.css" rel="preload" as="style"><link href="app.js" rel="preload" as="script"><link href="chunk-vendors.js" rel="preload" as="script"><link href="app.css" rel="stylesheet">
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta property="og:url" content="https://manga.syui.ai">
|
||||||
|
<meta property="og:title" content="yui">
|
||||||
|
<meta property="og:description" content="©syui.ai">
|
||||||
|
<meta property="og:image" content="https://manga.syui.ai/manga/og.png">
|
||||||
|
</head>
|
||||||
|
<body><div id="app"></div><script src="chunk-vendors.js"></script><script src="app.js"></script></body>
|
||||||
|
</html>
|
BIN
public/manga/0.png
Normal file
After Width: | Height: | Size: 456 KiB |
BIN
public/manga/1.png
Normal file
After Width: | Height: | Size: 531 KiB |
BIN
public/manga/10.png
Normal file
After Width: | Height: | Size: 576 KiB |
BIN
public/manga/100.png
Normal file
After Width: | Height: | Size: 846 KiB |
BIN
public/manga/101.png
Normal file
After Width: | Height: | Size: 479 KiB |
BIN
public/manga/102.png
Normal file
After Width: | Height: | Size: 539 KiB |
BIN
public/manga/103.png
Normal file
After Width: | Height: | Size: 608 KiB |
BIN
public/manga/104.png
Normal file
After Width: | Height: | Size: 541 KiB |
BIN
public/manga/105.png
Normal file
After Width: | Height: | Size: 565 KiB |
BIN
public/manga/106.png
Normal file
After Width: | Height: | Size: 134 KiB |
BIN
public/manga/11.png
Normal file
After Width: | Height: | Size: 554 KiB |
BIN
public/manga/12.png
Normal file
After Width: | Height: | Size: 554 KiB |
BIN
public/manga/13.png
Normal file
After Width: | Height: | Size: 395 KiB |
BIN
public/manga/14.png
Normal file
After Width: | Height: | Size: 503 KiB |
BIN
public/manga/15.png
Normal file
After Width: | Height: | Size: 473 KiB |
BIN
public/manga/16.png
Normal file
After Width: | Height: | Size: 422 KiB |
BIN
public/manga/17.png
Normal file
After Width: | Height: | Size: 419 KiB |
BIN
public/manga/18.png
Normal file
After Width: | Height: | Size: 386 KiB |
BIN
public/manga/19.png
Normal file
After Width: | Height: | Size: 658 KiB |
BIN
public/manga/2.png
Normal file
After Width: | Height: | Size: 654 KiB |
BIN
public/manga/20.png
Normal file
After Width: | Height: | Size: 584 KiB |
BIN
public/manga/21.png
Normal file
After Width: | Height: | Size: 581 KiB |
BIN
public/manga/22.png
Normal file
After Width: | Height: | Size: 619 KiB |
BIN
public/manga/23.png
Normal file
After Width: | Height: | Size: 443 KiB |
BIN
public/manga/24.png
Normal file
After Width: | Height: | Size: 618 KiB |
BIN
public/manga/25.png
Normal file
After Width: | Height: | Size: 567 KiB |
BIN
public/manga/26.png
Normal file
After Width: | Height: | Size: 696 KiB |
BIN
public/manga/27.png
Normal file
After Width: | Height: | Size: 621 KiB |
BIN
public/manga/28.png
Normal file
After Width: | Height: | Size: 268 KiB |
BIN
public/manga/29.png
Normal file
After Width: | Height: | Size: 526 KiB |
BIN
public/manga/3.png
Normal file
After Width: | Height: | Size: 343 KiB |
BIN
public/manga/30.png
Normal file
After Width: | Height: | Size: 702 KiB |
BIN
public/manga/31.png
Normal file
After Width: | Height: | Size: 532 KiB |
BIN
public/manga/32.png
Normal file
After Width: | Height: | Size: 615 KiB |
BIN
public/manga/33.png
Normal file
After Width: | Height: | Size: 619 KiB |
BIN
public/manga/34.png
Normal file
After Width: | Height: | Size: 432 KiB |
BIN
public/manga/35.png
Normal file
After Width: | Height: | Size: 832 KiB |
BIN
public/manga/36.png
Normal file
After Width: | Height: | Size: 431 KiB |
BIN
public/manga/37.png
Normal file
After Width: | Height: | Size: 571 KiB |
BIN
public/manga/38.png
Normal file
After Width: | Height: | Size: 598 KiB |
BIN
public/manga/39.png
Normal file
After Width: | Height: | Size: 701 KiB |
BIN
public/manga/4.png
Normal file
After Width: | Height: | Size: 496 KiB |
BIN
public/manga/40.png
Normal file
After Width: | Height: | Size: 529 KiB |
BIN
public/manga/41.png
Normal file
After Width: | Height: | Size: 524 KiB |
BIN
public/manga/42.png
Normal file
After Width: | Height: | Size: 588 KiB |
BIN
public/manga/43.png
Normal file
After Width: | Height: | Size: 648 KiB |
BIN
public/manga/44.png
Normal file
After Width: | Height: | Size: 294 KiB |
BIN
public/manga/45.png
Normal file
After Width: | Height: | Size: 643 KiB |
BIN
public/manga/46.png
Normal file
After Width: | Height: | Size: 575 KiB |
BIN
public/manga/47.png
Normal file
After Width: | Height: | Size: 602 KiB |
BIN
public/manga/48.png
Normal file
After Width: | Height: | Size: 630 KiB |
BIN
public/manga/49.png
Normal file
After Width: | Height: | Size: 414 KiB |
BIN
public/manga/5.png
Normal file
After Width: | Height: | Size: 645 KiB |
BIN
public/manga/50.png
Normal file
After Width: | Height: | Size: 542 KiB |
BIN
public/manga/51.png
Normal file
After Width: | Height: | Size: 613 KiB |
BIN
public/manga/52.png
Normal file
After Width: | Height: | Size: 492 KiB |
BIN
public/manga/53.png
Normal file
After Width: | Height: | Size: 447 KiB |
BIN
public/manga/54.png
Normal file
After Width: | Height: | Size: 585 KiB |
BIN
public/manga/55.png
Normal file
After Width: | Height: | Size: 492 KiB |
BIN
public/manga/56.png
Normal file
After Width: | Height: | Size: 429 KiB |
BIN
public/manga/57.png
Normal file
After Width: | Height: | Size: 546 KiB |
BIN
public/manga/58.png
Normal file
After Width: | Height: | Size: 461 KiB |
BIN
public/manga/59.png
Normal file
After Width: | Height: | Size: 315 KiB |
BIN
public/manga/6.png
Normal file
After Width: | Height: | Size: 398 KiB |
BIN
public/manga/60.png
Normal file
After Width: | Height: | Size: 594 KiB |
BIN
public/manga/61.png
Normal file
After Width: | Height: | Size: 336 KiB |
BIN
public/manga/62.png
Normal file
After Width: | Height: | Size: 391 KiB |
BIN
public/manga/63.png
Normal file
After Width: | Height: | Size: 441 KiB |
BIN
public/manga/64.png
Normal file
After Width: | Height: | Size: 528 KiB |
BIN
public/manga/65.png
Normal file
After Width: | Height: | Size: 524 KiB |
BIN
public/manga/66.png
Normal file
After Width: | Height: | Size: 462 KiB |
BIN
public/manga/67.png
Normal file
After Width: | Height: | Size: 611 KiB |
BIN
public/manga/68.png
Normal file
After Width: | Height: | Size: 572 KiB |
BIN
public/manga/69.png
Normal file
After Width: | Height: | Size: 536 KiB |
BIN
public/manga/7.png
Normal file
After Width: | Height: | Size: 468 KiB |
BIN
public/manga/70.png
Normal file
After Width: | Height: | Size: 583 KiB |
BIN
public/manga/71.png
Normal file
After Width: | Height: | Size: 690 KiB |
BIN
public/manga/72.png
Normal file
After Width: | Height: | Size: 615 KiB |
BIN
public/manga/73.png
Normal file
After Width: | Height: | Size: 500 KiB |
BIN
public/manga/74.png
Normal file
After Width: | Height: | Size: 554 KiB |
BIN
public/manga/75.png
Normal file
After Width: | Height: | Size: 528 KiB |
BIN
public/manga/76.png
Normal file
After Width: | Height: | Size: 656 KiB |
BIN
public/manga/77.png
Normal file
After Width: | Height: | Size: 617 KiB |
BIN
public/manga/78.png
Normal file
After Width: | Height: | Size: 441 KiB |
BIN
public/manga/79.png
Normal file
After Width: | Height: | Size: 538 KiB |
BIN
public/manga/8.png
Normal file
After Width: | Height: | Size: 535 KiB |
BIN
public/manga/80.png
Normal file
After Width: | Height: | Size: 510 KiB |
BIN
public/manga/81.png
Normal file
After Width: | Height: | Size: 400 KiB |
BIN
public/manga/82.png
Normal file
After Width: | Height: | Size: 765 KiB |
BIN
public/manga/83.png
Normal file
After Width: | Height: | Size: 300 KiB |
BIN
public/manga/84.png
Normal file
After Width: | Height: | Size: 418 KiB |
BIN
public/manga/85.png
Normal file
After Width: | Height: | Size: 456 KiB |