yogastic/yoga-app/next.config.ts
2025-01-06 22:13:54 +01:00

36 lines
834 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
output: "standalone",
sassOptions: {
silenceDeprecations: [
'abs-percent',
'bogus-combinators',
'call-string',
'color-4-api',
'color-functions',
'color-module-compat',
'css-function-mixin',
'duplicate-var-flags',
'elseif',
'feature-exists',
'fs-importer-cwd',
'function-units',
'global-builtin',
'import',
'legacy-js-api',
'mixed-decls',
'moz-document',
'new-global',
'null-alpha',
'relative-canonical',
'slash-div',
'strict-unary',
// 'user-authored',
]
}
};
export default nextConfig;