14 lines
301 B
TypeScript
14 lines
301 B
TypeScript
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";`,
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|