-
-
Notifications
You must be signed in to change notification settings - Fork 403
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e3c30ed
commit 514702f
Showing
1 changed file
with
7 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,13 @@ | ||
console.log('content loaded'); | ||
|
||
/** | ||
* @description | ||
* DO NOT USE import someModule from '...'; | ||
* | ||
* @issue-url https://github.com/Jonghakseo/chrome-extension-boilerplate-react-vite/issues/160 | ||
* | ||
* Chrome extensions don't support modules in content scripts. | ||
* If you want to use other modules in content scripts, you need to import them via these files. | ||
* | ||
*/ | ||
import('@pages/content/ui'); | ||
import('@pages/content/injected'); | ||
|
||
console.log('content loaded'); |