因為 Electron 可以直接使用 node.js api
所以我在 index.js require 一個自訂的模組
開發狀態下 localhost 的目錄沒有 test.js 這個檔案
打包時要如何讓 vite 自動檢查到我 require 的這個模組並打包?
vite 如何處理此類型的問題?
目錄結構
index.html
/src/index.js
/src/test.js
/js/app.jsx
/js/main.jsx
index.html
<script src="src/index.js"></script>
<script type="module" src="/src/js/main.jsx"></script>
index.js
const test = require("./test");
console.log("index.js");
test();
test.js
const process = require("process");
const test = () => {
console.log(process.cwd());
};
module.exports = test;