728x90
๋ฐ์ํ
๋ชจ๋ ๋ค์ด๋ก๋
npm install –save jquery
npm install –save bootstrap
bootstrap import
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Elctron Test</title>
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.css">
</head>
<body>
<a class="btn btn-info">TEST BTN</a>
<script>
window.$ = window.jquery = require("jquery");
window.popper = require("popper.js");
require("bootstrap");
require('./common.js');
</script>
</body>
</html>
์ถ์ฒ:
https://akageun.github.io/2018/08/22/electron-bs4.html
[Electron.js] Bootstrap 4 ์ฌ์ฉํ๊ธฐ.
์ธ์ ๋ ๊ฐ๋ฐํ๊ธฐ๋ฅผ ์ฆ๊ธฐ๋ ๊ฐ๋ฐ์ ์ ๋๋ค.
akageun.github.io
728x90
๋ฐ์ํ