1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2024-09-17 05:25:54 +02:00
.profile/next.config.js

10 lines
212 B
JavaScript
Raw Normal View History

2023-04-02 22:44:09 +02:00
const nextTranslate = require('next-translate-plugin')
2021-04-18 01:56:23 +02:00
/** @type {import("next").NextConfig} */
2022-10-03 20:52:15 +02:00
const nextConfig = {
reactStrictMode: true,
output: 'standalone'
}
module.exports = nextTranslate(nextConfig)