bud.html params have no effect

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.