- Remove app/web/dist/** from .gitignore - Add built web assets to repository for deployment - Includes bundle.css, bundle.js, index.html and other static assets
18 lines
412 B
HTML
18 lines
412 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
|
|
|
<title>ORLY?</title>
|
|
|
|
<link rel="icon" type="image/png" href="/favicon.png" />
|
|
<link rel="stylesheet" href="/global.css" />
|
|
<link rel="stylesheet" href="/bundle.css" />
|
|
|
|
<script defer src="/bundle.js"></script>
|
|
</head>
|
|
|
|
<body></body>
|
|
</html>
|