Skip to content

Commit

Permalink
Moved Images Folder into Assets.
Browse files Browse the repository at this point in the history
  • Loading branch information
prix-uniris committed Jun 21, 2022
1 parent 7ac9603 commit c5df3ed
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 5 deletions.
File renamed without changes
File renamed without changes
7 changes: 2 additions & 5 deletions assets/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,11 @@ module.exports = (env, options) => ({
{
test: /\.s?css$/,
use: [MiniCssExtractPlugin.loader, "css-loader", "sass-loader"],
}
},
],
},
plugins: [
new MiniCssExtractPlugin({ filename: "../css/app.css" }),
new CopyWebpackPlugin([
{ from: "static/", to: "../" },
{ from: "images/", to: "../images/" },
]),
new CopyWebpackPlugin([{ from: "static/", to: "../" }]),
],
});

0 comments on commit c5df3ed

Please sign in to comment.