diff --git a/FE/.eslintrc.json b/FE/.eslintrc.json index dc9e8fe..e7f372a 100644 --- a/FE/.eslintrc.json +++ b/FE/.eslintrc.json @@ -13,6 +13,7 @@ ["@Contexts", "./src/contexts/"], ["@Hooks", "./src/hooks/"], ["@Types", "./src/types/"], + ["@Constants", "./src/constants/"], ["@Public", "./public/"] ], "extensions": [".js", ".jsx", ".json"] diff --git a/FE/src/constants/constants.js b/FE/src/constants/constants.js new file mode 100644 index 0000000..6619cbc --- /dev/null +++ b/FE/src/constants/constants.js @@ -0,0 +1 @@ +export const TOKEN = "token"; diff --git a/FE/webpack.common.js b/FE/webpack.common.js index bec8ec5..699e929 100644 --- a/FE/webpack.common.js +++ b/FE/webpack.common.js @@ -38,6 +38,7 @@ module.exports = { "@Contexts": path.resolve(__dirname, "src/contexts/"), "@Hooks": path.resolve(__dirname, "src/hooks/"), "@Types": path.resolve(__dirname, "src/types/"), + "@Constants": path.resolve(__dirname, "src/constants/"), "@Public": path.resolve(__dirname, "public/"), }, extensions: [".js", ".jsx"],