Typeform/embed

View on GitHub
packages/demo-webpack/webpack.config.js

Summary

Maintainability
A
0 mins
Test Coverage
const path = require("path");

module.exports = {
  entry: "./src/index.js",
  output: {
    path: path.resolve(__dirname, "dist"),
    filename: "main.js",
  },
  module: {
    rules: [
      {
        test: /\.css$/i,
        use: ["style-loader", "css-loader"],
      },
    ],
  },
};