chore: linting

This commit is contained in:
taskylizard
2024-07-10 04:05:54 +00:00
parent 9f39e9663d
commit 048fa9e4a8
8 changed files with 35 additions and 49 deletions

View File

@@ -1,6 +1,11 @@
import { corsEventHandler } from 'nitro-cors'
export default corsEventHandler((_event) => {}, {
origin: '*',
methods: '*'
})
export default corsEventHandler(
(_event) => {
/** no-op */
},
{
origin: '*',
methods: '*'
}
)