-
-
Save net/71080a8cb4754fc8cec506762d7d526b to your computer and use it in GitHub Desktop.
Adding Bootstrap to Phoenix using NPM
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 1. Add Bootstrap as a dependency in package.json | |
{ | |
... | |
"dependencies": { | |
... | |
"bootstrap": "~3.3.6" | |
} | |
} | |
// 2. Modify brunch-config.js | |
exports.config = { | |
... | |
npm: { | |
enabled: true, | |
// Whitelist the npm deps to be pulled in as front-end assets. | |
// All other deps in package.json will be excluded from the bundle. | |
whitelist: ["phoenix", "phoenix_html"], | |
styles: {bootstrap: ["dist/css/bootstrap.css"]} | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment