diff --git a/webpack.common.js b/webpack.common.js new file mode 100644 index 0000000..09931b3 --- /dev/null +++ b/webpack.common.js @@ -0,0 +1,10 @@ +const webpack = require('webpack') +const path = require('path') + +module.exports = { + mode: 'development', + entry: path.resolve(__dirname, 'src/main.js'), + output: { + path: path.resolve(__dirname, 'static/dist') + } +} diff --git a/webpack.prod.js b/webpack.prod.js new file mode 100644 index 0000000..e69de29