1
0
Fork 0
mirror of synced 2024-07-03 21:40:55 +12:00
budibase/examples/nextjs-api-sales/next.config.js
2022-03-08 17:29:49 +00:00

16 lines
316 B
JavaScript

const { join } = require("path")
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
sassOptions: {
includePaths: [join(__dirname, "styles")]
},
serverRuntimeConfig: {
apiKey: "",
appName: "",
host: "http://localhost:10000"
}
}
module.exports = nextConfig