1
0
Fork 0
mirror of synced 2024-07-12 17:56:07 +12: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