+
404 Not Found
The page you are looking for does not exist, but maybe you'll find it in your heart.

diff --git a/vite.config.ts b/vite.config.ts
index 7f70b0a..9a1c443 100644
--- a/vite.config.ts
+++ b/vite.config.ts
@@ -1,10 +1,20 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
+import sitemap from 'vite-plugin-sitemap'
import path from "path"
// https://vite.dev/config/
export default defineConfig({
- plugins: [react()],
+ plugins: [
+ react(),
+ sitemap({
+ hostname: "https://ecepathmaker.com",
+ dynamicRoutes: ["/courses", "/faq"],
+ readable: true,
+ // Keep our hand-written public/robots.txt instead of generating one.
+ generateRobotsTxt: false,
+ }),
+ ],
resolve: {
alias: {
"@": path.resolve(__dirname, "./src"),