mirror of
https://github.com/vercel/next.js.git
synced 2026-09-20 02:25:18 +08:00
30ce5d4b3f
### What? Improve error messages about invalid CSS files. ### Why? Currently, `sass-loader` compiles CSS as a single line, and as the issue emitter prints the whole line, the error message is not good. ### How? Closes PACK-3187 Fixes #68311 --------- Co-authored-by: Tobias Koppers <tobias.koppers@googlemail.com>
8 lines
112 B
JavaScript
8 lines
112 B
JavaScript
'use client'
|
|
|
|
import './global.scss'
|
|
|
|
export default function Layout({ children }) {
|
|
return <>{children}</>
|
|
}
|