Skip to content

Commit e2a1295

Browse files
committed
build: css + ts
1 parent dc570a5 commit e2a1295

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

next.config.js renamed to next.config.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
/** @type {import('next').NextConfig} */
1+
import type { NextConfig } from 'next'
2+
23
const nextConfig = {
34
output: 'export',
45
trailingSlash: true,
@@ -22,6 +23,6 @@ const nextConfig = {
2223
eslint: {
2324
ignoreDuringBuilds: false,
2425
},
25-
}
26+
} satisfies NextConfig
2627

27-
module.exports = nextConfig
28+
export default nextConfig

pages/_app.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import type { AppProps } from 'next/app'
2-
import 'styles/globals.css'
2+
import '@/public/globals.css'
33

44
export default function App({ Component, pageProps }: AppProps): JSX.Element {
55
return <Component {...pageProps} />
File renamed without changes.

0 commit comments

Comments
 (0)