We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dc570a5 commit e2a1295Copy full SHA for e2a1295
next.config.js next.config.tsnext.config.js renamed to next.config.ts
@@ -1,4 +1,5 @@
1
-/** @type {import('next').NextConfig} */
+import type { NextConfig } from 'next'
2
+
3
const nextConfig = {
4
output: 'export',
5
trailingSlash: true,
@@ -22,6 +23,6 @@ const nextConfig = {
22
23
eslint: {
24
ignoreDuringBuilds: false,
25
},
-}
26
+} satisfies NextConfig
27
-module.exports = nextConfig
28
+export default nextConfig
pages/_app.tsx
@@ -1,5 +1,5 @@
import type { AppProps } from 'next/app'
-import 'styles/globals.css'
+import '@/public/globals.css'
export default function App({ Component, pageProps }: AppProps): JSX.Element {
return <Component {...pageProps} />
styles/globals.css public/globals.cssstyles/globals.css renamed to public/globals.css
0 commit comments