From 8ffd39317ea7ec422e1a6405709a472a4f1bcc80 Mon Sep 17 00:00:00 2001 From: JANGHYUNn Date: Thu, 18 Jan 2024 17:29:49 +0900 Subject: [PATCH] meta tag test --- package.json | 6 +----- src/App.js | 17 ++++++++++++++++- 2 files changed, 17 insertions(+), 6 deletions(-) diff --git a/package.json b/package.json index c7a20e8..e4341d0 100644 --- a/package.json +++ b/package.json @@ -177,11 +177,7 @@ "--no-sandbox", "--disable-setuid-sandbox" ], - "puppeteerExecutablePath": "/bin/chromium-browser", - "include": [ - "/control", - "/main/dashboard" - ] + "puppeteerExecutablePath": "/bin/chromium-browser" }, "homepage": "" } diff --git a/src/App.js b/src/App.js index 535ee4c..8e0b3bf 100644 --- a/src/App.js +++ b/src/App.js @@ -1,6 +1,21 @@ +import { Helmet } from 'react-helmet-async'; // ** Router Import import Router from './router/Router'; if (process.env.NODE_ENV === 'production') console.log = function () {}; -const App = props => ; +const App = props => ( + <> + + + + + + +); export default App;