1
0
Fork 0
mirror of synced 2024-06-29 11:31:06 +12:00
budibase/examples/nextjs-api-sales/next.config.js

11 lines
219 B
JavaScript
Raw Normal View History

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