@@ -67,25 +38,7 @@ export default function PageLayout({ children }: PageLayoutProps) {
style={{ height: 'calc(100%) ', flexWrap: 'nowrap' }}
>
-
-
-
-
-
-
-
-
+
{children}
diff --git a/frontend/vite.config.ts b/frontend/vite.config.ts
index c9aa710cc..dd0d8aabd 100644
--- a/frontend/vite.config.ts
+++ b/frontend/vite.config.ts
@@ -1,11 +1,13 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import viteTsconfigPaths from 'vite-tsconfig-paths'
+import eslint from 'vite-plugin-eslint';
+
export default defineConfig({
// depending on your application, base can also be "/"
base: '',
- plugins: [react(), viteTsconfigPaths()],
+ plugins: [react(), viteTsconfigPaths(), eslint()],
server: {
// this ensures that the browser opens upon server start
open: true,