From 65e7041a3c88a5b2d1ae76e7023807537775cb1b Mon Sep 17 00:00:00 2001 From: Yuval Adam <_@yuv.al> Date: Sat, 21 Sep 2024 13:15:44 +0200 Subject: Initial NextJS project creation with basic structure --- webpack.config.js | 42 ------------------------------------------ 1 file changed, 42 deletions(-) delete mode 100644 webpack.config.js (limited to 'webpack.config.js') 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' - }) - ] -}; -- cgit v1.3.1