fix: update settings
This commit is contained in:
@@ -1,7 +1,17 @@
|
||||
import type { NextConfig } from "next";
|
||||
import type { NextConfig } from 'next';
|
||||
import path from 'path';
|
||||
|
||||
const nextConfig: NextConfig = {
|
||||
/* config options here */
|
||||
output: 'standalone',
|
||||
sassOptions: {
|
||||
includePaths: [path.resolve('./src/core/styles')],
|
||||
prependData: `@import "index.scss";`,
|
||||
},
|
||||
compiler: {
|
||||
removeConsole:
|
||||
process.env.NODE_ENV === 'production' ? { exclude: ['error'] } : false,
|
||||
},
|
||||
};
|
||||
|
||||
export default nextConfig;
|
||||
|
||||
Reference in New Issue
Block a user