mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-12 00:53:55 +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>
|