웹 팩에 정적 JSON 파일 로드 시공 후 코드에 다음과 같은 사항이 있습니다. var getMenu = function () { return window.fetch("portal/content/json/menu.json").then(function (data) { return data.json(); }); }; 제 옷을 입으려고 했어요.webpack.config.js이것은, 다음과 같습니다. module: { loaders: [ ... { test: /\.json$/, exclude: /node_modules/, use: [ 'file-loader?name=[name].[ext]&outputPath=portal/content/json' ] }, ... ] } 프로젝트 구조: dist content js..