From b62828df7bcbe569b3779c351c6c4a7a3af93626 Mon Sep 17 00:00:00 2001 From: SajadMRjl Date: Wed, 16 Jul 2025 18:51:57 +0330 Subject: [PATCH] chore: fix conflict of End of lines and change end of line feed to 'lf' --- .gitattributes | 1 + .gitignore | 2 ++ vite.config.d.ts | 2 ++ 3 files changed, 5 insertions(+) create mode 100644 .gitattributes create mode 100644 vite.config.d.ts diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..94f480d --- /dev/null +++ b/.gitattributes @@ -0,0 +1 @@ +* text=auto eol=lf \ No newline at end of file diff --git a/.gitignore b/.gitignore index a547bf3..88ad144 100644 --- a/.gitignore +++ b/.gitignore @@ -12,6 +12,8 @@ dist dist-ssr *.local +*.tsbuildinfo + # Editor directories and files .vscode/* !.vscode/extensions.json diff --git a/vite.config.d.ts b/vite.config.d.ts new file mode 100644 index 0000000..2c646ae --- /dev/null +++ b/vite.config.d.ts @@ -0,0 +1,2 @@ +declare const _default: import('vite').UserConfig; +export default _default;