Skip to content

Commit fe368a4

Browse files
committed
chore: clean up code
1 parent 6affdde commit fe368a4

File tree

1 file changed

+2
-10
lines changed

1 file changed

+2
-10
lines changed

webdriver-ts-results/webpack.config.js

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ const loaders = [
1717
},
1818
{
1919
test: /\.css$/,
20-
use: [{ loader: "style-loader" }, { loader: "css-loader" }],
20+
use: ["style-loader", "css-loader" ],
2121
}
2222
];
2323

@@ -54,19 +54,11 @@ export default [{
5454
},
5555
resolve: {
5656
extensions: [".js", ".ts", ".tsx"],
57-
modules: [
58-
__dirname,
59-
path.resolve(__dirname, "src"),
60-
"node_modules"
61-
],
62-
alias: {
63-
plotly: 'plotly.js-cartesian-dist'
64-
}
6557
},
6658
plugins: [
6759
// new BundleAnalyzerPlugin(),
6860
new HtmlWebpackPlugin({
69-
template: path.join(__dirname, 'public/index.html'),
61+
template: path.join(__dirname, 'public', 'index.html'),
7062
filename: 'table.html',
7163
inject: true,
7264
}),

0 commit comments

Comments
 (0)