webpack.config.js 257 B

1234567891011121314
  1. module.exports = {
  2. entry: "./src/main.js",
  3. watch : true,
  4. output: {
  5. path: __dirname,
  6. filename: "bundle.js"
  7. },
  8. module: {
  9. loaders: [
  10. { test: /\.css$/, loader: "style!css" }
  11. ]
  12. }
  13. }