summaryrefslogtreecommitdiff
path: root/webpack.config.js
diff options
context:
space:
mode:
Diffstat (limited to 'webpack.config.js')
-rw-r--r--webpack.config.js42
1 files changed, 0 insertions, 42 deletions
diff --git a/webpack.config.js b/webpack.config.js
deleted file mode 100644
index 51d90dc..0000000
--- a/webpack.config.js
+++ /dev/null
@@ -1,42 +0,0 @@
-const HtmlWebPackPlugin = require('html-webpack-plugin');
-module.exports = {
- module: {
- rules: [
- {
- test: /\.js$/,
- exclude: /node_modules/,
- use: {
- loader: 'babel-loader'
- }
- },
- {
- test: /\.html$/,
- use: [
- {
- loader: 'html-loader'
- }
- ]
- },
- {
- test: /\.scss$/,
- use: [
- {
- loader: 'style-loader'
- },
- {
- loader: 'css-loader'
- },
- {
- loader: 'sass-loader'
- }
- ]
- }
- ]
- },
- plugins: [
- new HtmlWebPackPlugin({
- template: './src/index.html',
- filename: './index.html'
- })
- ]
-};