);
};
const root = ReactDOM.createRoot(document.getElementById('root')!);
-root.render();
\ No newline at end of file
+root.render(
+
+
+
+);
\ No newline at end of file
diff --git a/frontend/web/vite.config.js b/frontend/web/vite.config.js
index 2c7dda5..6517ea5 100644
--- a/frontend/web/vite.config.js
+++ b/frontend/web/vite.config.js
@@ -7,14 +7,14 @@ export default defineConfig({
resolve: {
// Ensure that Vite treats symlinked packages as local, so HMR works correctly.
alias: {
- '@ra-aid/common': path.resolve(__dirname, '../common/src')
+ '@ra-aid/common': path.resolve(__dirname, '../common/dist')
}
},
server: {
watch: {
// Watch for changes in the common package.
// This pattern forces Vite to notice file changes in the shared library.
- paths: ['../common/src/**']
+ paths: ['../common/src/**', '../common/dist/**']
}
},
css: {