Files
new-website-jekyll-theme/_includes/pack.html
2025-03-19 17:14:52 -03:00

18 lines
428 B
HTML

---
env:
type: 'string'
default: 'development'
outputs:
type: 'hash'
---
{%- render 'script.html', src: 'assets/js/env.js' -%}
{%- if env == 'production' -%}
{%- for pack in outputs -%}
{%- unless pack[1].entryPoint -%}{%- continue -%}{%- endunless -%}
{%- assign src = pack[0] -%}
{%- render 'script.html', src: -%}
{%- endfor -%}
{%- else -%}
{%- render 'script.html', src: 'pack.js' -%}
{%- endif -%}