webpack.config.js 236 B

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