# bud.html params have no effect

**URL:** https://discourse.roots.io/t/bud-html-params-have-no-effect/28738
**Category:** bud
**Created:** 2024-10-01T08:02:44Z
**Posts:** 1

## Post 1 by @maximeF — 2024-10-01T08:02:44Z

Hi,  
the params I pass into the bud.html call in bud.config.ts have no effect. For example, passing a title property does not change the page title, or passing custom meta does not add meta in the index.html file.

export default async (bud: Bud) =\> {  
bud.entry(‘app’, [‘index.ts’, ‘index.scss’]).html({  
title: ‘SNACKKK.’,  
meta: {viewport: ‘width=device-width, initial-scale=1, shrink-to-fit=no’},  
});  
};

Run npx run build.

The index.html:

SNACK.You need to enable JavaScript to run this app

Subsidiary question: how to change the lang attribute in the html tag?

Thanks.
