Some checks failed
Go / build (push) Has been cancelled
- Removed unnecessary entries from .gitignore related to the app/web/dist directory. - Updated app/web/.gitignore to exclude the dist directory. - Added rollup-plugin-copy to package.json and updated rollup.config.js to copy static assets during the build process. - Introduced new CSS and JS files in the dist directory for improved styling and functionality. - Updated index.html to reference new global CSS and JS files, enhancing the overall user interface. - Added favicon and other image assets to the dist directory for branding consistency.
18 lines
429 B
HTML
18 lines
429 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="/orly-favicon.png" />
|
|
<link rel="stylesheet" href="/global.css" />
|
|
<link rel="stylesheet" href="/build/bundle.css" />
|
|
|
|
<script defer src="/build/bundle.js"></script>
|
|
</head>
|
|
|
|
<body></body>
|
|
</html>
|