Some checks failed
Build and deploy updated apps / Build & deploy (push) Failing after 50s
12 lines
227 B
TypeScript
12 lines
227 B
TypeScript
import { fileURLToPath } from 'node:url'
|
|
|
|
export default defineNuxtConfig({
|
|
extends: ['..'],
|
|
modules: ['@nuxt/eslint'],
|
|
eslint: {
|
|
config: {
|
|
rootDir: fileURLToPath(new URL('..', import.meta.url)),
|
|
},
|
|
},
|
|
})
|