diff --git a/index.html b/index.html
index fc4a9da..a3031c8 100644
--- a/index.html
+++ b/index.html
@@ -4,7 +4,7 @@
-
drone-hub
+ Drone Hub
diff --git a/package.json b/package.json
index 6becb69..4e3c831 100644
--- a/package.json
+++ b/package.json
@@ -10,8 +10,6 @@
"preview": "vite preview"
},
"dependencies": {
- "@fontsource-variable/geist": "^5.2.8",
- "@fontsource-variable/inter": "^5.2.8",
"@tailwindcss/vite": "^4.3.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
diff --git a/public/favicon.svg b/public/favicon.svg
new file mode 100644
index 0000000..609078e
--- /dev/null
+++ b/public/favicon.svg
@@ -0,0 +1,11 @@
+
\ No newline at end of file
diff --git a/src/index.css b/src/index.css
index 4e29760..85edfc9 100644
--- a/src/index.css
+++ b/src/index.css
@@ -1,7 +1,6 @@
@import "tailwindcss";
@import "tw-animate-css";
@import "shadcn/tailwind.css";
-@import "@fontsource-variable/inter";
@custom-variant dark (&:is(.dark *));
@@ -103,7 +102,6 @@
--radius-lg: var(--radius);
--radius-xl: calc(var(--radius) + 4px);
--font-heading: var(--font-sans);
- --font-sans: 'Inter Variable', sans-serif;
--color-sidebar-ring: var(--sidebar-ring);
--color-sidebar-border: var(--sidebar-border);
--color-sidebar-accent-foreground: var(--sidebar-accent-foreground);
@@ -133,7 +131,6 @@ html {
body {
@apply bg-background text-foreground antialiased;
margin: 0;
- font-family: "Inter Variable", system-ui, sans-serif;
}
#root {
@@ -154,4 +151,4 @@ a {
html {
@apply font-sans;
}
-}
\ No newline at end of file
+}
diff --git a/vite.config.ts b/vite.config.ts
index efe6ed5..72bbfa3 100644
--- a/vite.config.ts
+++ b/vite.config.ts
@@ -14,6 +14,15 @@ export default defineConfig({
babel({ presets: [reactCompilerPreset()] }),
tailwindcss(),
],
+ build: {
+ rollupOptions: {
+ output: {
+ entryFileNames: "assets/index.js",
+ chunkFileNames: "assets/chunk.js",
+ assetFileNames: "assets/[name][extname]",
+ },
+ },
+ },
resolve: {
alias: {
"@": resolve(__dirname, "src"),