Skip to content

Commit b39d65e

Browse files
authored
fix env check
1 parent e60822a commit b39d65e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

templates/index.twig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<meta http-equiv="X-UA-Compatible" content="ie=edge">
77
<title>{{ siteName }}</title>
88

9-
{% if not getenv('ENVIRONMENT') == 'dev' and not getenv('ENVIRONMENT') == 'local' %}
9+
{% if getenv('ENVIRONMENT') != 'dev' and getenv('ENVIRONMENT') != 'local' %}
1010
<link rel="stylesheet" href="{{ rev('app.css') }}">
1111
{% endif %}
1212
</head>
@@ -31,4 +31,4 @@
3131
{% endif %}
3232

3333
</body>
34-
</html>
34+
</html>

0 commit comments

Comments
 (0)