build this

This commit is contained in:
Seth Call 2025-03-02 10:41:16 -06:00
parent e62fa08207
commit e5d283162f
1 changed files with 1 additions and 1 deletions

View File

@ -266,7 +266,7 @@ const generateArtistPages = async (render) => {
</body>
</html>`;
const finalOutputPath = process.env.NODE_ENV === "development" ? `${original_artist_slug}.html` : original_artist_slug;
const finalOutputPath = process.env.NODE_ENV === "development" ? `${original_artist_slug}.html` : `${original_artist_slug}.html`;
const outputFilePath = path.join(OUTPUT_DIR, finalOutputPath);
fs.writeFileSync(outputFilePath, fullHtml);
console.log(`Generated: ${outputFilePath}`);