mirror of
https://github.com/demostf/cutter.git
synced 2026-06-03 11:54:08 +02:00
git init
This commit is contained in:
commit
df7394a816
23 changed files with 6670 additions and 0 deletions
14
www/webpack.config.js
Normal file
14
www/webpack.config.js
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
const CopyWebpackPlugin = require("copy-webpack-plugin");
|
||||
const path = require('path');
|
||||
|
||||
module.exports = {
|
||||
entry: "./bootstrap.js",
|
||||
output: {
|
||||
path: path.resolve(__dirname, "dist"),
|
||||
filename: "bootstrap.js",
|
||||
},
|
||||
mode: "development",
|
||||
plugins: [
|
||||
new CopyWebpackPlugin(['index.html'])
|
||||
],
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue