Exclude bun.lockb from omnix text substitution

Prevents "stream did not contain valid UTF-8" errors during template
initialization. The binary lockfile doesn't need text substitution and
should be copied as-is.
This commit is contained in:
♥ Minnie ♥ 2025-11-14 11:26:25 +08:00
parent c497b0fc1d
commit 187ad24404
Signed by: jasmine
GPG key ID: 8563E358D4E8040E

View file

@ -24,6 +24,7 @@ in {
placeholder = "my-project";
}
];
exclude = ["bun.lockb"];
};
javascript-nextjs = {
@ -35,6 +36,7 @@ in {
placeholder = "my-nextjs-app";
}
];
exclude = ["bun.lockb"];
};
};
};