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

16 lines
321 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: "",
2022-03-09 09:17:07 +13:00
appName: "sales",
host: "http://localhost:10000"
}
}
module.exports = nextConfig