fmt
This commit is contained in:
parent
4262110317
commit
54f008b39a
4 changed files with 17 additions and 17 deletions
|
@ -1,10 +1,10 @@
|
||||||
import js from '@eslint/js';
|
import js from '@eslint/js'
|
||||||
import { includeIgnoreFile } from '@eslint/compat';
|
import { includeIgnoreFile } from '@eslint/compat'
|
||||||
import svelte from 'eslint-plugin-svelte';
|
import svelte from 'eslint-plugin-svelte'
|
||||||
import globals from 'globals';
|
import globals from 'globals'
|
||||||
import { fileURLToPath } from 'node:url';
|
import { fileURLToPath } from 'node:url'
|
||||||
import ts from 'typescript-eslint';
|
import ts from 'typescript-eslint'
|
||||||
const gitignorePath = fileURLToPath(new URL('./.gitignore', import.meta.url));
|
const gitignorePath = fileURLToPath(new URL('./.gitignore', import.meta.url))
|
||||||
|
|
||||||
export default ts.config(
|
export default ts.config(
|
||||||
includeIgnoreFile(gitignorePath),
|
includeIgnoreFile(gitignorePath),
|
||||||
|
@ -28,4 +28,4 @@ export default ts.config(
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
);
|
)
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
<img
|
<img
|
||||||
src={Pfp}
|
src={Pfp}
|
||||||
alt=""
|
alt=""
|
||||||
class="mb-4 h-32 w-32 motion-preset-blur-down-lg rounded-full motion-delay-100"
|
class="pointer-events-none mb-4 h-32 w-32 motion-preset-blur-down-lg rounded-full motion-delay-100"
|
||||||
/>
|
/>
|
||||||
<h1
|
<h1
|
||||||
class="motion-preset-blur-down-lg text-center text-4xl font-bold motion-delay-200"
|
class="motion-preset-blur-down-lg text-center text-4xl font-bold motion-delay-200"
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import adapter from '@sveltejs/adapter-auto';
|
import adapter from '@sveltejs/adapter-auto'
|
||||||
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
|
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte'
|
||||||
|
|
||||||
/** @type {import('@sveltejs/kit').Config} */
|
/** @type {import('@sveltejs/kit').Config} */
|
||||||
const config = {
|
const config = {
|
||||||
|
@ -13,6 +13,6 @@ const config = {
|
||||||
// See https://svelte.dev/docs/kit/adapters for more information about adapters.
|
// See https://svelte.dev/docs/kit/adapters for more information about adapters.
|
||||||
adapter: adapter(),
|
adapter: adapter(),
|
||||||
},
|
},
|
||||||
};
|
}
|
||||||
|
|
||||||
export default config;
|
export default config
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import { sveltekit } from '@sveltejs/kit/vite';
|
import { sveltekit } from '@sveltejs/kit/vite'
|
||||||
import { defineConfig } from 'vite';
|
import { defineConfig } from 'vite'
|
||||||
import tailwindcss from '@tailwindcss/vite';
|
import tailwindcss from '@tailwindcss/vite'
|
||||||
|
|
||||||
export default defineConfig({
|
export default defineConfig({
|
||||||
plugins: [sveltekit(), tailwindcss()],
|
plugins: [sveltekit(), tailwindcss()],
|
||||||
|
@ -9,4 +9,4 @@ export default defineConfig({
|
||||||
allow: ['..'],
|
allow: ['..'],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
});
|
})
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue