move front to folder

This commit is contained in:
Pablo Martin 2025-06-06 14:17:36 +02:00
parent 9a976a8be5
commit 793ff9fc96
14 changed files with 5 additions and 1 deletions

View file

@ -8,6 +8,6 @@
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
<script type="module" src="./main.jsx"></script>
</body>
</html>

View file

@ -5,4 +5,8 @@ import tailwindcss from "@tailwindcss/vite";
// https://vite.dev/config/
export default defineConfig({
plugins: [react(), tailwindcss()],
server: {
port: 3001,
open: "src/front/index.html",
},
});