๋ฌธ์ ์
์์ ์ค๋ฅ๋ฅผ ํด๊ฒฐ ํ electron์ฑ์ ์คํํ์ ๋, electron ์ฑ์ ์ผ์ง์ง๋ง ํ๋ฉด์ด ๋๋๋ง ๋์ง ์๋ ์ํ๊ฐ ๋ฐ์.
ํด๊ฒฐ๊ณผ์
Failed to compile.
Module not found: Error: Can't resolve './App' in 'D:\\2023\\march\\realPractice\\login\\src'
Did you mean 'App.js'?
BREAKING CHANGE: The request './App' failed to resolve only because it was resolved as fully specified
(probably because the origin is strict EcmaScript Module, e. g. a module with javascript mimetype, a '*.mjs' file, or a '*.js' file where the package.json contains '"type": "module"').
The extension in the request is mandatory for it to be fully specified.
Compiled with warnings.
๋ฆฌ์กํธ๋ก ๊ตฌ์ฑ๋ ํ๋ฉด์ด ์ปดํ์ผ์ ์คํจํ์ผ๋ฉฐ, EcmaScript Module์ด ์ฌ์ฉ๋์ง ์์์ ์๊ธด๋ค๋ ๋ฌธ์ .
App.js ๋ก ์ด๋ํด๋ณด๋ electron ํต์ ๊ณผ ๊ด๋ จ๋ ์ฝ๋๊ฐ ์์๋๋ฐ, ์ฌ๊ธฐ์ ์ฌ์ฉ๋ ipcRenderer ๊ด๋ จ ํจ์๋ preloadsd.js์ ์ ์ํ์๋ค. ์ด์ ์ require๋ก ์์ ํ๋ ์ฝ๋๋ค์ import ๋ฅผ ํ์ฉํ์ฌ electron์ ํจ์๋ค์ ๋ถ๋ฌ์์ ์๊ธด ๋ฌธ์ .
ํด๊ฒฐ ๋ฐฉ๋ฒ
//preloads.js
//before
import { contextBridge, ipcRenderer } from 'electron';
//after
const {ipcRenderer,contextBridge}=require('electron');
'Development > Electron' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
[Electron] SyntaxError: Cannot use import statement outside a module (0) | 2023.06.17 |
---|---|
[Electron] ipcRenderer.invoke & ipcMin.handle (0) | 2023.06.15 |
[Electron] dialog.showOpenDialog() (0) | 2023.06.15 |
[Electron] electron ์์ด์ฝ ๋ฃ๊ธฐ (0) | 2023.01.25 |
[Electron] Electron + React ์ฐ๋ํ๊ธฐ (0) | 2023.01.13 |
๋๊ธ