mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-02 17:09:23 +08:00
23 lines
746 B
Plaintext
23 lines
746 B
Plaintext
---
|
|
sidebar_position: 6
|
|
---
|
|
|
|
# プロジェクトのコンパイル
|
|
|
|
プロジェクトディレクトリ上で、`wails build`コマンドを実行しましょう。 そうすることで、プロジェクトがコンパイルされ、`build/bin`ディレクトリ内に本番配布用のバイナリが出力されます。
|
|
|
|
バイナリを起動すると、デフォルト仕様のアプリを確認することができます:
|
|
|
|
```mdx-code-block
|
|
<div class="text--center">
|
|
<img
|
|
src={require("@site/static/img/defaultproject.webp").default}
|
|
width="50%"
|
|
class="screenshot"
|
|
/>
|
|
</div>
|
|
<br />
|
|
```
|
|
|
|
コンパイルオプションについて詳しくは、[CLIリファレンス](../reference/cli.mdx#build)をご覧ください。
|