1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
| const path = require("path")
module.exports = { mode: "development", entry: path.join(__dirname, "./src/main.js"), output: { path: path.join(__dirname, "./dist"), filename: "bundle.js", }, plugins: [ ], module: { rules: [ { test: /\.css$/, use: ["style-loader", "css-loader"], }, { test: /\.(png|jpg|gif|bmp|jpeg)$/, use: "url-loader?limit=1111&name=[hash:8]-[name].[ext]", }, { test: /\.(ttf|eot|svg|woff|woff2)$/, use: "url-loader", }, { test: /\.js$/, use: "babel-loader", exclude: /node_modules/, }, ], }, }
|