26 lines
628 B
PHP
26 lines
628 B
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>NASLOV</title>
|
|
|
|
<?php if (getenv('DEV')): ?>
|
|
<script type="module" src="http://localhost:5173/@vite/client"></script>
|
|
<?php else: ?>
|
|
<link href='dist/assets/app.css' rel='stylesheet' type='text/css'>
|
|
<?php endif ?>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="app"></div>
|
|
|
|
<?php if (getenv('DEV')): ?>
|
|
<script type="module" src="http://localhost:5173/vue/main.js"></script>
|
|
<?php else: ?>
|
|
<script type="module" src="dist/app.js"></script>
|
|
<?php endif ?>
|
|
</body>
|
|
|
|
</html>
|