2022-03-08 18:29:49 +01:00
|
|
|
const { join } = require("path")
|
2022-03-08 14:43:12 +01:00
|
|
|
/** @type {import('next').NextConfig} */
|
|
|
|
const nextConfig = {
|
|
|
|
reactStrictMode: true,
|
|
|
|
sassOptions: {
|
2022-03-08 18:29:49 +01:00
|
|
|
includePaths: [join(__dirname, "styles")]
|
|
|
|
},
|
|
|
|
serverRuntimeConfig: {
|
|
|
|
apiKey: "",
|
|
|
|
appName: "",
|
|
|
|
host: "http://localhost:10000"
|
2022-03-08 14:43:12 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = nextConfig
|