changing folder name

This commit is contained in:
talksik
2022-03-17 15:28:44 -04:00
parent 4a6b4deec5
commit 453121c987
26 changed files with 0 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
module.exports = {
/**
* This is the main entry point for your application, it's the first file
* that runs in the main process.
*/
entry: "./src/index.ts",
// Put your normal webpack config below here
module: {
rules: require("./webpack.rules"),
},
resolve: {
extensions: [".js", ".ts", ".jsx", ".tsx", ".css", ".json"],
},
};