스마트서비스 최종완료보고 버전
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
import type { NextConfig } from "next";
|
||||
|
||||
const nextConfig: NextConfig = {
|
||||
/* config options here */
|
||||
webpack(config) {
|
||||
config.module.rules.push({
|
||||
test: /\.svg$/,
|
||||
use: ["@svgr/webpack"],
|
||||
});
|
||||
return config;
|
||||
},
|
||||
//output: 'export', //Bruce
|
||||
output: (process.env.NEXT_OUTPUT as any) ?? "export", //Bruce
|
||||
images: {
|
||||
unoptimized: true, //Bruce
|
||||
},
|
||||
};
|
||||
|
||||
export default nextConfig;
|
||||
Reference in New Issue
Block a user