DNA transcription and translation in wasm with rust
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
311 B

  1. const CopyWebpackPlugin = require("copy-webpack-plugin");
  2. const path = require('path');
  3. module.exports = {
  4. entry: "./bootstrap.js",
  5. output: {
  6. path: path.resolve(__dirname, "dist"),
  7. filename: "bootstrap.js",
  8. },
  9. mode: "development",
  10. plugins: [
  11. new CopyWebpackPlugin(['index.html'])
  12. ],
  13. };