Removed unused webpack configuration files.
This commit is contained in:
parent
1b63f31043
commit
68c1d1d35d
@ -1,21 +0,0 @@
|
||||
export default {
|
||||
entry: {
|
||||
audioshowkit: "./src/audioshowkit.js"
|
||||
},
|
||||
module: {
|
||||
rules: [
|
||||
{
|
||||
test: /\.html$/i,
|
||||
loader: "html-loader",
|
||||
},
|
||||
{
|
||||
test: /\.css$/i,
|
||||
use: ['style-loader', 'css-loader'],
|
||||
}
|
||||
]
|
||||
},
|
||||
output: {
|
||||
filename: "[name].js",
|
||||
path: "./dist"
|
||||
}
|
||||
};
|
@ -1,13 +0,0 @@
|
||||
import merge from "webpack-merge";
|
||||
import webpackCommon from "./webpack.common";
|
||||
|
||||
devConfig = {
|
||||
mode: "development",
|
||||
devtools: "inline-source-map",
|
||||
|
||||
devServer: {
|
||||
static: "./dist"
|
||||
}
|
||||
}
|
||||
|
||||
export default merge(webpackCommon, devConfig);
|
@ -1,12 +0,0 @@
|
||||
import merge from "webpack-merge"
|
||||
import webpackCommon from "./webpack.common"
|
||||
|
||||
prodConfig = {
|
||||
mode: "production",
|
||||
output: {
|
||||
filename: "[name].js",
|
||||
path: "./public"
|
||||
}
|
||||
}
|
||||
|
||||
export default merge(webpackCommon, prodConfig);
|
Loading…
Reference in New Issue
Block a user