🧹 Cleaning up the DnD scaffold

This commit is contained in:
2021-10-01 23:41:00 -07:00
parent ebd5a8b95d
commit 75d5dc4281
73 changed files with 149 additions and 2469 deletions

View File

@@ -39,22 +39,19 @@ module.exports = {
loader: "source-map-loader",
},
{
test: /\.css$/,
use: [
{ loader: "style-loader" },
{
loader: "css-loader",
options: {
modules: true,
importLoaders: 1,
sourceMap: true,
},
},
],
test: /\.css$/i,
use: ["style-loader", "css-loader"],
},
{
test: /\.(scss|sass)$/,
use: ["style-loader", "css-loader", "sass-loader"],
test: /\.s[ac]ss$/i,
use: [
// Creates `style` nodes from JS strings
"style-loader",
// Translates CSS into CommonJS
"css-loader",
// Compiles Sass to CSS
"sass-loader",
],
},
{
test: /\.(png|jpg|jpeg|gif|svg|woff|woff2|ttf|eot)$/i,