amino-acidsbiologydnarnatranscriptiontranslationrustacidsaminocentral-dogmajavascriptwasmwebassembly
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
19 lines
463 B
const CopyWebpackPlugin = require("copy-webpack-plugin");
|
|
const path = require('path');
|
|
|
|
module.exports = {
|
|
devtool: 'eval-source-map',
|
|
entry: "./bootstrap.js",
|
|
output: {
|
|
path: path.resolve(__dirname, "dist"),
|
|
filename: "bootstrap.js",
|
|
},
|
|
mode: "development",
|
|
plugins: [
|
|
new CopyWebpackPlugin(['index.html'])
|
|
],
|
|
devServer: {
|
|
compress: true,
|
|
public: 'dna-transcription-translation.yeetpc.com' //Change for another domain
|
|
}
|
|
};
|