Skip to content

Commit 6f6ed43

Browse files
author
Mopar
committed
Fixing a few things.
1 parent 00a7530 commit 6f6ed43

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
.idea/
2-
node_modules/
2+
node_modules/
3+
dist/

config/webpack.prod.js

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
var webpack = require("webpack");
22
var webpackMerge = require("webpack-merge");
33
var ExtractTextPlugin = require("extract-text-webpack-plugin");
4-
var CopyPlugin = require("copy-webpack-plugin");
54
var commonConfig = require("./webpack.common.js");
65
var helpers = require("./helpers");
76

@@ -30,12 +29,6 @@ module.exports = webpackMerge(commonConfig, {
3029
"ENV": JSON.stringify(ENV)
3130
}
3231
}),
33-
new CopyPlugin([
34-
{
35-
from: "src/assets",
36-
to: "assets"
37-
}
38-
]),
3932
new webpack.LoaderOptionsPlugin({
4033
options: {
4134
htmlLoader: {

0 commit comments

Comments
 (0)