From 4c1f02def8039356e045cb0dc51ad8d46a3823d8 Mon Sep 17 00:00:00 2001 From: Lyn Nagara Date: Mon, 15 Apr 2019 21:50:47 -0700 Subject: [PATCH] Remove unnecessary webpack things --- static/package.json | 8 +------- static/webpack.config.js | 15 --------------- 2 files changed, 1 insertion(+), 22 deletions(-) delete mode 100644 static/webpack.config.js diff --git a/static/package.json b/static/package.json index ad790f1..5d36aa5 100644 --- a/static/package.json +++ b/static/package.json @@ -3,12 +3,6 @@ "version": "0.1.0", "main": "main.js", "scripts": { - "start": "webpack-dev-server" - }, - "dependencies": { - "copy-webpack-plugin": "^5.0.2", - "webpack": "^4.29.6", - "webpack-cli": "^3.3.0", - "webpack-dev-server": "^3.2.1" + "start": "python3 -m http.server" } } diff --git a/static/webpack.config.js b/static/webpack.config.js deleted file mode 100644 index 841faf3..0000000 --- a/static/webpack.config.js +++ /dev/null @@ -1,15 +0,0 @@ -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']) -// ], -// watch: true, -// }; \ No newline at end of file