Skip to content

Commit 606ffec

Browse files
committed
fix: revert accidental changes
1 parent b8c6966 commit 606ffec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

utils/trimBoilerplate.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export function removeCSSImport(
2727
) {
2828
// Remove CSS import in the entry file
2929
const entryPath = path.resolve(rootDir, needsTypeScript ? 'src/main.ts' : 'src/main.js')
30-
replaceContent(entryPath, (content) => content.replace("import './assets/main.css'\r\n\r\n", ''))
30+
replaceContent(entryPath, (content) => content.replace("import './assets/main.css'\n\n", ''))
3131

3232
if (needsCypressCT) {
3333
const ctSetupPath = path.resolve(

0 commit comments

Comments
 (0)