onsitesurvey/next.config.ts
keyy1315 fc93853601 feat: implement survey-sale's read list & delete function
- 조사 매물 삭제, 리스트 조회 기능 구현
2025-05-02 15:41:37 +09:00

20 lines
421 B
TypeScript

import type { NextConfig } from 'next'
import path from 'path'
const nextConfig: NextConfig = {
/* config options here */
sassOptions: {
includePaths: [path.join(__dirname, './src/styles')],
},
// async rewrites() {
// return [
// {
// source: '/api/:path*',
// destination: `${process.env.NEXT_PUBLIC_API_URL}/api/:path*`,
// },
// ]
// },
}
export default nextConfig