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.

16 lines
381 B

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