1
0
Fork 0
mirror of synced 2024-09-29 08:41:16 +13:00
budibase/examples/nextjs-api-sales/next.config.js

16 lines
316 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: "",
appName: "",
host: "http://localhost:10000"
}
}
module.exports = nextConfig