Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions auth.html
Original file line number Diff line number Diff line change
Expand Up @@ -1061,6 +1061,12 @@ <h1 id="form-title">Welcome back 👋</h1>
}
setTimeout(typeLine, 1000);
</script>

<!-- Vercel Speed Insights -->
<script type="module">
import { injectSpeedInsights } from '/node_modules/@vercel/speed-insights/dist/index.mjs';
injectSpeedInsights();
</script>
</body>

</html>
6 changes: 5 additions & 1 deletion dashboard.html
Original file line number Diff line number Diff line change
Expand Up @@ -2200,7 +2200,11 @@ <h3 style="font-size:18px;font-weight:700;margin:0 0 20px;">📋 Your Roadmap Su
</div>
</div>


<!-- Vercel Speed Insights -->
<script type="module">
import { injectSpeedInsights } from '/node_modules/@vercel/speed-insights/dist/index.mjs';
injectSpeedInsights();
</script>
</body>

</html>
6 changes: 6 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -866,5 +866,11 @@ <h5>Legal</h5>
draw();
})();
</script>

<!-- Vercel Speed Insights -->
<script type="module">
import { injectSpeedInsights } from '/node_modules/@vercel/speed-insights/dist/index.mjs';
injectSpeedInsights();
</script>
</body>
</html>
54 changes: 54 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,7 @@
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {}
"dependencies": {
"@vercel/speed-insights": "^2.0.0"
}
}
112 changes: 99 additions & 13 deletions react-app/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions react-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
"preview": "vite preview"
},
"dependencies": {
"@vercel/speed-insights": "^2.0.0",
"react": "^19.2.5",
"react-dom": "^19.2.5"
},
Expand Down
2 changes: 2 additions & 0 deletions react-app/src/App.jsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { useState } from 'react'
import { SpeedInsights } from '@vercel/speed-insights/react'
import reactLogo from './assets/react.svg'
import viteLogo from './assets/vite.svg'
import heroImg from './assets/hero.png'
Expand Down Expand Up @@ -115,6 +116,7 @@ function App() {

<div className="ticks"></div>
<section id="spacer"></section>
<SpeedInsights />
</>
)
}
Expand Down