1
0
Fork 0
mirror of synced 2024-06-26 10:00:41 +12:00
budibase/examples/nextjs-api-sales/next.config.js

17 lines
443 B
JavaScript
Raw Normal View History

const { join } = require("path")
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
sassOptions: {
includePaths: [join(__dirname, "styles")],
},
serverRuntimeConfig: {
apiKey:
"bf4d86af933b5ac0af0fdbe4bf7d89ff-f929752a1eeaafb00f4b5e3325097d51a44fe4b39f22ed857923409cc75414b379323a25ebfb4916",
2022-03-09 09:17:07 +13:00
appName: "sales",
host: "http://localhost:10000",
},
}
module.exports = nextConfig