summaryrefslogtreecommitdiff
path: root/webpack.config.js
diff options
context:
space:
mode:
authorYuval Adam <_@yuv.al>2024-09-21 13:15:44 +0200
committerYuval Adam <_@yuv.al>2024-09-21 15:13:25 +0200
commit65e7041a3c88a5b2d1ae76e7023807537775cb1b (patch)
treec21fe6cc3f137e2f0c13c0c184f9f59581a6639a /webpack.config.js
parent6ed566ac4f30e1aa8b7a817c22912c50ee136f86 (diff)
Initial NextJS project creation with basic structure
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'
- })
- ]
-};