Skip to content

Commit

Permalink
Set up GitHub Actions for deployment-12
Browse files Browse the repository at this point in the history
  • Loading branch information
amitgupta0220 committed Oct 31, 2024
1 parent 2aa8c34 commit 8f56193
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
15 changes: 8 additions & 7 deletions src/main.jsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
import { StrictMode } from 'react'
import { createRoot } from 'react-dom/client'
import App from './App.jsx'
import './index.css'
import { StrictMode } from "react";
import { createRoot } from "react-dom/client";
import App from "./App.jsx";
import "./index.css";

createRoot(document.getElementById('root')).render(
createRoot(document.getElementById("root")).render(
<StrictMode>
<div>{console.log("hey i am inside the website!")}</div>
<App />
</StrictMode>,
)
</StrictMode>
);
2 changes: 1 addition & 1 deletion vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ import react from "@vitejs/plugin-react";
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react()],
base: "luberlab.github.io/",
base: "/luberlab.github.io/",
});

0 comments on commit 8f56193

Please sign in to comment.