next-app-boilerplate/next.config.js

18 lines
368 B
JavaScript
Raw Normal View History

const path = require('path')
2022-02-12 23:07:11 +01:00
2022-05-16 14:25:01 +02:00
const nextTranslate = require('next-translate')
2022-02-12 23:07:11 +01:00
/** @type {import('next').NextConfig} */
2022-05-16 14:25:01 +02:00
const nextConfig = {
2022-02-12 23:07:11 +01:00
reactStrictMode: true,
swcMinify: true,
2022-02-12 23:07:11 +01:00
sassOptions: {
includePaths: [
path.join(__dirname, 'styles/abstracts'),
path.join(__dirname, 'styles/base')
]
}
}
2022-05-16 14:25:01 +02:00
module.exports = nextTranslate(nextConfig)