🚀 Init
This commit is contained in:
parent
9fd0228a37
commit
59e871a96f
16 changed files with 818 additions and 0 deletions
4
test/astro.config.mjs
Normal file
4
test/astro.config.mjs
Normal file
|
@ -0,0 +1,4 @@
|
|||
import { defineConfig } from 'astro/config';
|
||||
import vue from '@astrojs/vue';
|
||||
|
||||
export default defineConfig({integrations: [vue()]});
|
23
test/package.json
Normal file
23
test/package.json
Normal file
|
@ -0,0 +1,23 @@
|
|||
{
|
||||
"name": "test",
|
||||
"type": "module",
|
||||
"version": "0.0.1",
|
||||
"scripts": {
|
||||
"dev": "astro dev",
|
||||
"start": "astro dev",
|
||||
"build": "astro check && astro build",
|
||||
"preview": "astro preview",
|
||||
"astro": "astro"
|
||||
},
|
||||
"dependencies": {
|
||||
"@astrojs/check": "^0.9.2",
|
||||
"@astrojs/vue": "^4.5.0",
|
||||
"@minpluto/zorn": "../",
|
||||
"astro": "^4.14.2",
|
||||
"typescript": "^5.5.4",
|
||||
"vue": "^3.4.38"
|
||||
},
|
||||
"devDependencies": {
|
||||
"sass-embedded": "^1.77.8"
|
||||
}
|
||||
}
|
1
test/src/env.d.ts
vendored
Normal file
1
test/src/env.d.ts
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
/// <reference path="../.astro/types.d.ts" />
|
27
test/src/pages/index.astro
Normal file
27
test/src/pages/index.astro
Normal file
|
@ -0,0 +1,27 @@
|
|||
---
|
||||
// Components
|
||||
import {Zorn} from '@minpluto/zorn'
|
||||
---
|
||||
<meta charset="utf-8">
|
||||
|
||||
<Zorn
|
||||
Poster="https://md.sudovanilla.org/images/eay-p-v.jpg"
|
||||
Video="https://md.sudovanilla.org/videos/webm/Ennie-and-Yoyki.webm"
|
||||
CustomControls
|
||||
Milieu
|
||||
/>
|
||||
|
||||
<h2>Эни и Йойки: Недевчачьи игры. 1 серия. Мультфильмы для детей</h2>
|
||||
<sup style="color: gray">Translation: "Non-girly games"</sup>
|
||||
<p>Created by Daniyar Yambushev</p>
|
||||
<p>Source: <a href="https://www.youtube.com/watch?v=MuyJtxzyU3o">https://www.youtube.com/watch?v=MuyJtxzyU3o</a></p>
|
||||
<br/>
|
||||
<a href="/with-separate-audio">View with separated audio</a>
|
||||
|
||||
<style>
|
||||
body {
|
||||
background: #010101;
|
||||
color: white;
|
||||
font-family: Arial, Helvetica, sans-serif;
|
||||
}
|
||||
</style>
|
3
test/tsconfig.json
Normal file
3
test/tsconfig.json
Normal file
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"extends": "astro/tsconfigs/strict"
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue