@@ -1,13 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
- <head>
- <meta charset="UTF-8" />
- <link rel="icon" type="image/svg+xml" href="/vite.svg" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
- <title>Tres Playground</title>
- </head>
- <body>
- <div id="app"></div>
- <script type="module" src="/src/main.ts"></script>
- </body>
-</html>
@@ -44,9 +44,7 @@
"threejs-vue"
],
"scripts": {
- "dev": "vite",
"build": "vite build",
- "preview": "vite preview",
"playground": "cd playground && npm run dev",
"test": "vitest",
"test:ci": "vitest run",
@@ -1,23 +0,0 @@
-<script setup lang="ts">
-/* import Shapes from './demos/Shapes.vue'
- */ import TheBasic from './demos/TheBasic.vue'
-// import TheEvents from '/@/components/TheEvents.vue'
-</script>
-
-<template>
- <TheBasic />
-</template>
-<style>
-html,
-body {
- margin: 0;
- padding: 0;
- height: 100%;
- width: 100%;
-}
-#app {
-</style>
@@ -1,10 +0,0 @@
-import { createApp } from 'vue'
-import App from './App.vue'
-import './style.css'
-export const app = createApp(App)
-app.mount('#app')
-console.log(app)