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.

19 lines
463 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. ],
  14. devServer: {
  15. compress: true,
  16. public: 'dna-transcription-translation.yeetpc.com' //Change for another domain
  17. }
  18. };