Skip to content

Commit

Permalink
Merge pull request #2 from samunohito/feat/launch-standalone-frontend
Browse files Browse the repository at this point in the history
cssの読み込み順序とCSP設定の変更
  • Loading branch information
fruitriin authored Nov 19, 2023
2 parents 582601e + 4261835 commit d82d386
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions packages/frontend/src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,18 @@
<!-- https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP -->
<meta
http-equiv="Content-Security-Policy"
content="default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline'; img-src 'self' data:"
content="default-src 'self';
script-src 'self';
style-src 'self' 'unsafe-inline';
img-src 'self' data: www.google.com xn--931a.moe localhost:3000"
/>
<style>
</style>

<link rel="stylesheet" href="/assets/tabler-icons/tabler-icons.min.css?v2.37.0">
<link rel="stylesheet" href="./style.scss" />
</head>

<body>
<div id="app"></div>
<script type="module" src="./_boot_.ts"></script>
<link rel="stylesheet" href="/assets/tabler-icons/tabler-icons.min.css?v2.37.0">
<link rel="stylesheet" href="./style.scss" />
</body>
</html>

0 comments on commit d82d386

Please sign in to comment.