๐ Reference
๐ Index
๋ฌธ์
Expectation Violation: Duplicate atom key "todoListState". This is a FATAL ERROR in production. But it is safe to ignore this warning if it occurred because of hot module replacement.
atom
์ด ์ฌ๋ฌ ๋ฒ ์ ์ธ๋๋ค.atom
์ ์ด๋ฏธ ์ ์ธ๋์ด ์๋ค.atom
์ด ์ ์ธ๋๊ณ ํด๋น ํญ๋ชฉ๋ง hot-replaced ๋๋ ๊ฒฝ์ฐ์๋ HMR์์ ๋์ผํ ์ผ์ด ๋ฐ์ํ ์ ์๋ค.atom
์ผ๋ก ๋ง๋ state๊ฐ ์ฌ์ ์ธ๋๋ค.ํด๊ฒฐ ๋ฐฉ๋ฒ
๋ฐฉ๋ฒ 1
intercept-stdout
๋ชจ๋์ ์ฌ์ฉํด์ ์๋ฌ ๋ฉ์์ง๋ฅผ ๋ฌด์ํ๋ ๋ฐฉ๋ฒ
# npm
npm i intercept-stdout
npm i @types/intercept-stdout
# yarn
yarn add intercept-stdout
yarn add @types/intercept-stdout
next.config.js
/* eslint-disable @typescript-eslint/no-var-requires */
/** @type {import('next').NextConfig} */
// <https://github.com/facebookexperimental/Recoil/issues/733>
// <https://github.com/ant-design/ant-design/issues/26136>
const intercept = require('intercept-stdout');
const interceptStdout = (text) => {
if (text.includes('Duplicate atom key')) {
return '';
}
return text;
};
intercept(interceptStdout);
๋ฐฉ๋ฒ 2
๋์๋ฅผ ์ฌ์ฉํด์ ์๋ฌ ๋ฉ์์ง๊ฐ ๋จ์ง ์๊ฒ ํ๋ ๋ฐฉ๋ฒ
uuid
๋ชจ๋ ์ค์น# npm
npm i uuid
npm i --save-dev @types/uuid
# yarn
yarn add uuid
yarn add @types/uuid
import { atom } from "recoil";
import { v1 } from "uuid";
import { UserData } from "../types/mainType";
export const userState = atom<UserData | null>({
key: `userState/${v1()}`
default: null
});