1
0

feat: react/vite/tailwind web scaffold with jsdom tests

This commit is contained in:
2026-08-29 19:26:10 +02:00
parent 26609d8b62
commit 63e8c5f054
11 changed files with 2395 additions and 7 deletions

13
web/index.html Normal file
View File

@@ -0,0 +1,13 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
<meta name="theme-color" content="#0a0a0a" />
<title>record-shop</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>

7
web/src/App.tsx Normal file
View File

@@ -0,0 +1,7 @@
export default function App() {
return (
<div className="min-h-dvh bg-neutral-950 text-neutral-100 flex items-center justify-center">
<h1 className="text-2xl font-semibold">record-shop</h1>
</div>
)
}

10
web/src/main.tsx Normal file
View File

@@ -0,0 +1,10 @@
import React from 'react'
import ReactDOM from 'react-dom/client'
import App from './App'
import './styles.css'
ReactDOM.createRoot(document.getElementById('root')!).render(
<React.StrictMode>
<App />
</React.StrictMode>
)

1
web/src/styles.css Normal file
View File

@@ -0,0 +1 @@
@import 'tailwindcss';

6
web/test/setup.ts Normal file
View File

@@ -0,0 +1,6 @@
import { afterEach } from 'vitest'
import { cleanup } from '@testing-library/react'
afterEach(() => {
cleanup()
})

10
web/test/smoke.test.tsx Normal file
View File

@@ -0,0 +1,10 @@
import { describe, it, expect } from 'vitest'
import { render, screen } from '@testing-library/react'
import App from '../src/App'
describe('App', () => {
it('renders the app title', () => {
render(<App />)
expect(screen.getByRole('heading', { name: 'record-shop' })).toBeTruthy()
})
})

19
web/tsconfig.json Normal file
View File

@@ -0,0 +1,19 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "bundler",
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"jsx": "react-jsx",
"strict": true,
"noUncheckedIndexedAccess": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"noEmit": true,
"isolatedModules": true,
"types": ["vite/client"]
},
"include": ["src", "test", "vite.config.ts"]
}

17
web/vite.config.ts Normal file
View File

@@ -0,0 +1,17 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import tailwindcss from '@tailwindcss/vite'
export default defineConfig({
plugins: [react(), tailwindcss()],
root: import.meta.dirname,
server: {
proxy: {
'/api': 'http://localhost:3000',
'/artwork': 'http://localhost:3000',
},
},
build: {
outDir: 'dist',
},
})