Phoenix:如何包含 bower-installed .js?
Phoenix: how to include bower-installed .js?
我已经通过 Brunch 在 Phoenix 应用程序中安装了一个 bower 包。如何将该包中的 .js 文件包含到我的应用程序中?软件包安装到 /bower_components
——我需要在某处添加它来构建它吗?或者有帮我手动在每个布局中包含 js 的助手吗?
Here's 任何寻找这个的人的答案:
如果您已经安装了软件包,只需公开文件夹即可:
plug Plug.Static,
at: "/", from: :discovery, gzip: false,
only: ~w(css fonts images js favicon.ico robots.txt bower_components)
这是在将您的包添加到 bower.json
并将文件夹添加到 .bowerrc
之后。
我已经通过 Brunch 在 Phoenix 应用程序中安装了一个 bower 包。如何将该包中的 .js 文件包含到我的应用程序中?软件包安装到 /bower_components
——我需要在某处添加它来构建它吗?或者有帮我手动在每个布局中包含 js 的助手吗?
Here's 任何寻找这个的人的答案:
如果您已经安装了软件包,只需公开文件夹即可:
plug Plug.Static,
at: "/", from: :discovery, gzip: false,
only: ~w(css fonts images js favicon.ico robots.txt bower_components)
这是在将您的包添加到 bower.json
并将文件夹添加到 .bowerrc
之后。