37 lines
835 B
TypeScript
37 lines
835 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;
|