Skip to content

Commit

Permalink
fix: fix import.js tag bug
Browse files Browse the repository at this point in the history
  • Loading branch information
AirboZH committed Apr 9, 2024
1 parent 4a1a31b commit 6d343ae
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions mode.js
Expand Up @@ -3,9 +3,11 @@ const fs = require('fs');
const mode = process.env.NODE_ENV || 'dev';

const preHTML = `<!DOCTYPE html>
<html xmlns:th="https://www.thymeleaf.org" lang="en" th:fragment="import()">`
<html xmlns:th="https://www.thymeleaf.org" lang="en">
<th:block th:fragment="import()">`

const postHTML = `</html>`
const postHTML = ` </th:block>
</html>`;

const productionImport = `
<link
Expand Down

0 comments on commit 6d343ae

Please sign in to comment.