mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 08:33:53 +00:00
13 lines
290 B
HTML
13 lines
290 B
HTML
<html>
|
|
<head>
|
|
{{ HEAD }}
|
|
{% if (ENV.NODE_ENV === 'dev') { %}
|
|
<!-- debug scripts -->
|
|
{% } else if (ENV.NODE_ENV === 'production') { %}
|
|
<!-- production scripts -->
|
|
{% } %}
|
|
</head>
|
|
<body>
|
|
{{ APP }}
|
|
</body>
|
|
</html> |