Files
archived-linsa/web/next.config.mjs
Nikita e38c10af6b .
2024-08-27 16:08:47 +03:00

25 lines
475 B
JavaScript

// not sure if good approach
const TAURI_DEV = false
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: false,
output: TAURI_DEV ? "export" : undefined,
// typescript: {
// // TODO: hacky for tauri
// ignoreBuildErrors: TAURI_DEV ? true : false
// },
images: {
// TODO: hacky for tauri
unoptimized: TAURI_DEV ? true : false,
remotePatterns: [
{
protocol: "https",
hostname: "**"
}
]
}
}
export default nextConfig