diff --git a/src/App.tsx b/src/App.tsx index 46a5992..520a031 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -3,6 +3,7 @@ import reactLogo from './assets/react.svg' import viteLogo from './assets/vite.svg' import heroImg from './assets/hero.png' import './App.css' +import TicTacToe from './components/TicTacToe' function App() { const [count, setCount] = useState(0) @@ -114,6 +115,9 @@ function App() {
+ ) } diff --git a/vite.config.ts b/vite.config.ts index 328fbed..5a33944 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -1,13 +1,7 @@ -/// import { defineConfig } from 'vite' import react from '@vitejs/plugin-react' +// https://vitejs.dev/config/ export default defineConfig({ plugins: [react()], - base: '/devless-demo/', - test: { - environment: 'jsdom', - globals: true, - setupFiles: './src/test-setup.ts', - }, })