chore: prettier
This commit is contained in:
parent
d2b50d163d
commit
ff88bf13da
|
|
@ -9,6 +9,7 @@ dist
|
|||
generated/
|
||||
test-results/
|
||||
tsconfig.tsbuildinfo
|
||||
.eslintcache
|
||||
|
||||
# IDE Specific
|
||||
.idea
|
||||
|
|
|
|||
|
|
@ -1,6 +1,7 @@
|
|||
import { PlaywrightTestConfig, devices } from "@playwright/test"
|
||||
import path from "path"
|
||||
|
||||
import { PlaywrightTestConfig, devices } from "@playwright/test"
|
||||
|
||||
// Reference: https://playwright.dev/docs/test-configuration
|
||||
const config: PlaywrightTestConfig = {
|
||||
timeout: 30 * 1000,
|
||||
|
|
|
|||
|
|
@ -1,8 +1,9 @@
|
|||
import { DehydratedState } from "@tanstack/react-query"
|
||||
import { NextPage } from "next"
|
||||
import { AppProps } from "next/app"
|
||||
import { ReactElement, ReactNode } from "react"
|
||||
|
||||
import { DehydratedState } from "@tanstack/react-query"
|
||||
|
||||
export type AppPropsWithLayout = AppProps<{
|
||||
dehydratedState: DehydratedState
|
||||
}> & {
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
import { defineConfig } from "unocss"
|
||||
|
||||
import presetIcons from "@unocss/preset-icons"
|
||||
|
||||
export default defineConfig({
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
import path from "path"
|
||||
import { defineConfig } from "vitest/config"
|
||||
|
||||
import react from "@vitejs/plugin-react"
|
||||
|
||||
export default defineConfig({
|
||||
|
|
|
|||
Loading…
Reference in New Issue