diff --git a/hacked/App.tsx b/hacked/App.tsx
deleted file mode 100644
index ad1fd4c..0000000
--- a/hacked/App.tsx
+++ /dev/null
@@ -1,21 +0,0 @@
-import '../src/App.css'
-import './hacked.css'
-export default function App() {
- return
-
-
-}
\ No newline at end of file
diff --git a/hacked/hacked.css b/hacked/hacked.css
deleted file mode 100644
index 4df6bc7..0000000
--- a/hacked/hacked.css
+++ /dev/null
@@ -1,18 +0,0 @@
-.hackedmain {
- display: flex;
- justify-content: center;
-}
-.hackedheader {
- font-size: 1.5em;
-}
-
-.hackedlist a {
- color: pink;
-}
-
-.hackedlist {
- display: flex;
- justify-content: center;
- align-items: center;
- flex-direction: column;
-}
diff --git a/hacked/index.html b/hacked/index.html
deleted file mode 100644
index 074a307..0000000
--- a/hacked/index.html
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
-
-
-
- amy hacked
-
-
-
-
-
-
-
-
-
-
diff --git a/hacked/index.tsx b/hacked/index.tsx
deleted file mode 100644
index 6432ed4..0000000
--- a/hacked/index.tsx
+++ /dev/null
@@ -1,11 +0,0 @@
-import { render } from 'solid-js/web'
-
-import App from './App'
-
-const root = document.getElementById('hackedroot')
-
-render(() => (
- <>
-
- >
-), root!)
diff --git a/vite.config.ts b/vite.config.ts
index bd40f52..6bd69e4 100644
--- a/vite.config.ts
+++ b/vite.config.ts
@@ -1,16 +1,15 @@
-import { defineConfig } from 'vite'
-import { resolve } from 'path'
-import solid from 'vite-plugin-solid'
+import { defineConfig } from "vite";
+import { resolve } from "path";
+import solid from "vite-plugin-solid";
export default defineConfig({
build: {
rollupOptions: {
input: {
- main: resolve(__dirname, 'index.html'),
- hacked: resolve(__dirname, 'hacked/index.html'),
- review: resolve(__dirname, 'review/index.html')
- }
- }
+ main: resolve(__dirname, "index.html"),
+ review: resolve(__dirname, "review/index.html"),
+ },
+ },
},
plugins: [solid()],
-})
+});