34 lines
665 B
JavaScript
34 lines
665 B
JavaScript
const path = require("path");
|
|
const webpack = require("webpack");
|
|
|
|
module.exports = {
|
|
entry: "./src/index.js",
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /\.(js|jsx)$/,
|
|
exclude: /(node_modules|bower_components)/,
|
|
loader: "babel-loader",
|
|
options: { presets: ["@babel/env"] }
|
|
},
|
|
{
|
|
test: /\.css$/,
|
|
use: ["style-loader", "css-loader"]
|
|
},
|
|
{
|
|
test: /\.(png|svg|jpg|md)$/,
|
|
use: [ "file-loader" ]
|
|
}
|
|
]
|
|
},
|
|
resolve: {
|
|
extensions: ["*", ".js", ".jsx"]
|
|
},
|
|
output: {
|
|
path: path.resolve(__dirname, "dist/"),
|
|
publicPath: "./dist/",
|
|
filename: "bundle.js"
|
|
}
|
|
};
|
|
|