🐉 Drag and Drop scaffold

This commit is contained in:
2021-09-30 11:53:04 -07:00
parent c134d2fc49
commit ebd5a8b95d
72 changed files with 2112 additions and 90 deletions

View File

@@ -40,7 +40,17 @@ module.exports = {
},
{
test: /\.css$/,
use: ["style-loader", "css-loader"],
use: [
{ loader: "style-loader" },
{
loader: "css-loader",
options: {
modules: true,
importLoaders: 1,
sourceMap: true,
},
},
],
},
{
test: /\.(scss|sass)$/,