12 lines
510 B
TypeScript
12 lines
510 B
TypeScript
// To support serverless targets (which don"t work if you try to read in things
|
|
// like CSS files at run time) this file is replaced in production builds with
|
|
// a function that returns compiled CSS (embedded as a string in the function).
|
|
import fs from "fs"
|
|
import path from "path"
|
|
|
|
const pathToCss = path.join(process.cwd(), process.env.NODE_ENV === "development" ? "node_modules/next-auth/css/index.css" : "/src/css/index.css")
|
|
|
|
export default function css() {
|
|
return fs.readFileSync(pathToCss, "utf8")
|
|
}
|