-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
68 additions
and
70 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | ||
<meta name="theme-color" content="#000000"> | ||
|
||
<!-- Downloaded from https://fonts.googleapis.com/css?family=Roboto:300,400,400italic,500,500italic,700 --> | ||
<link rel="stylesheet" href="/css/roboto-fonts.css" /> | ||
<!-- Downloaded from https://fonts.googleapis.com/css?family=Montserrat:400,400i,600&display=swap --> | ||
<link rel="stylesheet" href="/css/montserrat-fonts.css" /> | ||
|
||
<!-- | ||
manifest.json provides metadata used when your web app is added to the | ||
homescreen on Android. See https://developers.google.com/web/fundamentals/engage-and-retain/web-app-manifest/ | ||
--> | ||
<link rel="manifest" href="/manifest.json"> | ||
<link rel="shortcut icon" href="/favicon.ico"> | ||
|
||
<link rel="apple-touch-icon" type="image/png" href="/images/favicon/apple-touch-icon.png" /> | ||
<link rel="icon" type="image/png" href="/images/favicon/favicon-32x32.png" sizes="32x32" /> | ||
<link rel="icon" type="image/png" href="/images/favicon/favicon-16x16.png" sizes="16x16" /> | ||
<link rel="mask-icon" href="/images/favicon/safari-pinned-tab.svg"> | ||
|
||
<!-- AppCues Requirements --> | ||
<script type="text/javascript"> | ||
window.AppcuesSettings = { enableURLDetection: true }; | ||
</script> | ||
<script src="https://fast.appcues.com/49767.js"> | ||
</script> | ||
<!-- End AppCues Requirements --> | ||
|
||
<title>Broad Data Use Oversight System</title> | ||
</head> | ||
|
||
<body> | ||
<noscript> | ||
You need to enable JavaScript to run this app. | ||
</noscript> | ||
<script type="module" src="./src/index.tsx"></script> | ||
<div id="root"></div> | ||
</body> | ||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import { defineConfig } from 'vite'; | ||
import react from '@vitejs/plugin-react'; | ||
|
||
// https://vitejs.dev/config/ | ||
export default defineConfig({ | ||
plugins: [ | ||
react({ include: /\.(mdx|js|jsx|ts|tsx)$/ }), | ||
], | ||
assetsInclude: ['**/*.md'], | ||
build: { | ||
outDir: 'build', | ||
target: 'es2022' | ||
}, | ||
server: { | ||
port: 3000, | ||
}, | ||
}); |