質問編集履歴
2
タイトルの変更
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
V
|
1
|
+
Vite の静的アセット読み込みでマクロ的なことをしたい
|
test
CHANGED
File without changes
|
1
スペーシングの改善
test
CHANGED
File without changes
|
test
CHANGED
@@ -36,8 +36,8 @@
|
|
36
36
|
import config from "./config.json";
|
37
37
|
|
38
38
|
for (const item of config) {
|
39
|
-
|
39
|
+
eval(`import text${item.name} from "${item.text}?raw";`);
|
40
|
-
|
40
|
+
eval(`const ${item.name} = { name: "${item.name}", text: text${item.name} };`);
|
41
41
|
}
|
42
42
|
```
|
43
43
|
|