🚀 Init

This commit is contained in:
Korbs 2024-08-16 16:20:41 -04:00
parent 9fd0228a37
commit 59e871a96f
16 changed files with 818 additions and 0 deletions

4
test/astro.config.mjs Normal file
View 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
View 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
View file

@ -0,0 +1 @@
/// <reference path="../.astro/types.d.ts" />

View 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
View file

@ -0,0 +1,3 @@
{
"extends": "astro/tsconfigs/strict"
}