Skip to content

Commit 835da42

Browse files
authored
Fix/ Correct Meta data for cards and member to be static (#117)
* chore: Modal formatting updates * chore: Member card data updates * fix: Added github meta * fix: Update Member and Card data to be static to avoid rebuild's not updating cached data.
1 parent 58ece02 commit 835da42

File tree

4 files changed

+6
-2
lines changed

4 files changed

+6
-2
lines changed

docusaurus.config.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@ const config = {
1616
tagline: 'Exploring Cloud Computing at UMass Lowell',
1717
favicon: 'img/logo_icon.png',
1818

19+
// Static Directories
20+
staticDirectories: ['static'],
21+
22+
1923
// Set the production url of your site here
2024
url: 'https://UMLCloudComputing.github.io',
2125
// Set the /<baseUrl>/ pathname under which your site is served

src/pages/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ import { createTheme,responsiveFontSizes } from '@mui/material';
2222
import Layout from '@theme/Layout';
2323
import { ThemeProvider } from '@emotion/react';
2424

25-
import members from "../members_meta/members.json";
26-
import cards_data from "../cards_meta/cards_data.json";
25+
import members from "@site/static/meta_data/members_meta/members.json";
26+
import cards_data from "@site/static/meta_data/cards_meta/cards_data.json";
2727

2828
import AvatarLarge from "../components/AvatarLarge";
2929
import PaperCard from '../components/PaperCard';

0 commit comments

Comments
 (0)