Skip to content

Commit fd73830

Browse files
committed
fix: linting issues and make source compatible again after @antfu/eslint-config package update
1 parent 86568aa commit fd73830

File tree

3 files changed

+6
-0
lines changed

3 files changed

+6
-0
lines changed

error.vue

+2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
<script setup lang="ts">
2+
import process from 'node:process'
3+
24
const bodyCls = computed(() => {
35
const classList = ['antialiased']
46
if (process.env.NODE_ENV === 'development') {

layouts/default.vue

+2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
<script setup lang="ts">
2+
import process from 'node:process'
3+
24
const bodyCls = computed(() => {
35
const cls = [
46
'font-nunito text-base text-black dark:text-white dark:bg-slate-900 antialiased',

tailwind.config.ts

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1+
import process from 'node:process'
12
import type { Config } from 'tailwindcss'
23

4+
35
const config = {
46
darkMode: 'class',
57
content: [

0 commit comments

Comments
 (0)