• This project
    • Loading...
  • Sign in

정민혁 / TermProject_KakaoBot

%ea%b7%b8%eb%a6%bc1
Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Graphs
  • Network
  • Create a new issue
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • TermProject_KakaoBot
  • node_modules
  • rss-parser
  • webpack.config.js
  • 정민혁's avatar
    백과사전 구현시도(실패), 네이버 트랜드검색api를 대신 도입- response 값 parsing에 문제가 있어서 카카오톡으로는 response값을 그대로 출력하도록 설정 · 54182df6
    54182df6
    정민혁 authored 2018-12-12 02:20:27 +0900
webpack.config.js 379 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
var webpack = require("webpack");
module.exports = {
  entry: {
    "rss-parser": "./browser.js"
  },
  output: {
    path: __dirname,
    filename: "dist/[name].min.js"
  },
  resolve: {
    extensions: ['.js']
  },
  devtool: 'source-map',
  module: {
    loaders: [{
      test: /\.js$/,
      loader: 'babel-loader?presets[]=env',
    }]
  },
  node: {
    fs: "empty"
  }
}